From 1b09dfb921e37018a0dec3512e24af1d71df0ddc Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Fri, 30 Nov 2018 16:09:41 +0900 Subject: get gps position from navigation --- app/app.pro | 10 +- app/app.qrc | 4 +- app/dbus_client.cpp | 116 + app/dbus_client.h | 46 + app/images/arrow-0.png | Bin 3094 -> 0 bytes app/images/arrow-l-180.png | Bin 3373 -> 0 bytes app/images/arrow-l-30.png | Bin 3243 -> 0 bytes app/images/arrow-l-45.png | Bin 3187 -> 0 bytes app/images/arrow-l-75.png | Bin 3345 -> 0 bytes app/images/arrow-r-180.png | Bin 3373 -> 0 bytes app/images/arrow-r-30.png | Bin 3244 -> 0 bytes app/images/arrow-r-45.png | Bin 3183 -> 0 bytes app/images/arrow-r-75.png | Bin 3335 -> 0 bytes app/images/car-focus.png | Bin 27596 -> 0 bytes app/images/car-marker.png | Bin 10563 -> 6248 bytes app/images/car-marker2.png | Bin 6248 -> 0 bytes app/images/destination.png | Bin 0 -> 5375 bytes app/images/destination_full.png | Bin 0 -> 16658 bytes app/images/images.qrc | 34 +- app/images/marker-red.png | Bin 958 -> 0 bytes app/images/simple-background-white.png | Bin 0 -> 4548 bytes app/images/simple-bottom-background-white.png | Bin 4548 -> 0 bytes app/main.cpp | 29 +- app/org.agl.naviapi.xml | 28 + app/qcheapruler.cpp | 127 +- app/qcheapruler.hpp | 37 +- app/qml/Coordinate.txt | 12390 ------------------------ app/qml/CustomLabel.qml | 9 - app/qml/DateAndTime.qml | 37 - app/qml/Main.qml | 11 +- app/qml/MapWindow.qml | 475 +- app/qml/TbtBoard.qml | 187 + app/qml/qmldir | 3 +- package/Coordinate.txt | 12390 ------------------------ package/config.xml | 1 + package/package.pro | 8 +- 36 files changed, 569 insertions(+), 25373 deletions(-) create mode 100644 app/dbus_client.cpp create mode 100644 app/dbus_client.h delete mode 100644 app/images/arrow-0.png delete mode 100644 app/images/arrow-l-180.png delete mode 100644 app/images/arrow-l-30.png delete mode 100644 app/images/arrow-l-45.png delete mode 100644 app/images/arrow-l-75.png delete mode 100644 app/images/arrow-r-180.png delete mode 100644 app/images/arrow-r-30.png delete mode 100644 app/images/arrow-r-45.png delete mode 100644 app/images/arrow-r-75.png delete mode 100644 app/images/car-focus.png delete mode 100755 app/images/car-marker2.png create mode 100644 app/images/destination.png create mode 100644 app/images/destination_full.png delete mode 100644 app/images/marker-red.png create mode 100644 app/images/simple-background-white.png delete mode 100644 app/images/simple-bottom-background-white.png create mode 100644 app/org.agl.naviapi.xml delete mode 100644 app/qml/Coordinate.txt delete mode 100644 app/qml/CustomLabel.qml delete mode 100644 app/qml/DateAndTime.qml create mode 100644 app/qml/TbtBoard.qml delete mode 100644 package/Coordinate.txt diff --git a/app/app.pro b/app/app.pro index bedd56a..9088edf 100644 --- a/app/app.pro +++ b/app/app.pro @@ -1,7 +1,7 @@ TARGET = tbtnavi TEMPLATE = app -QT += qml network quick positioning location sql widgets +QT += qml network quick positioning location sql widgets dbus CONFIG += c++14 @@ -13,10 +13,12 @@ ios|android { SOURCES += \ main.cpp \ - qcheapruler.cpp + qcheapruler.cpp \ + dbus_client.cpp HEADERS += \ - qcheapruler.hpp + qcheapruler.hpp \ + dbus_client.h INCLUDEPATH += \ ../include @@ -28,3 +30,5 @@ RESOURCES += \ images/images.qrc \ app.qrc +DBUS_ADAPTORS += org.agl.naviapi.xml +DBUS_INTERFACES += org.agl.naviapi.xml diff --git a/app/app.qrc b/app/app.qrc index 1c08311..7ffb6e2 100644 --- a/app/app.qrc +++ b/app/app.qrc @@ -1,10 +1,8 @@ qml/qmldir - qml/CustomLabel.qml - qml/DateAndTime.qml qml/Main.qml qml/MapWindow.qml - qml/Coordinate.txt + qml/TbtBoard.qml diff --git a/app/dbus_client.cpp b/app/dbus_client.cpp new file mode 100644 index 0000000..6b5b5fb --- /dev/null +++ b/app/dbus_client.cpp @@ -0,0 +1,116 @@ +#include "dbus_client.h" + +dbus_client::dbus_client(const QString &pathName, + const QString &objName, + const QString &serverName, + QObject *parent) : + m_serverName(serverName), + m_pathName(pathName + serverName), + m_objName(objName + serverName) +{ + //DBus & api ini + initDBus(); + initAPIs(parent); +} + +dbus_client::~dbus_client(){} + +void dbus_client::initDBus(){ + + new NaviapiAdaptor(this); + + //make a connect session to navigation service(add route info) + if (!QDBusConnection::sessionBus().connect( + QString(), + QString(), + m_pathName, + "signalRouteInfo", + this, + SLOT(addRoutePointsSlot(double, double, double, double)))) { //slot + qDebug() << m_serverName << "sessionBus.connect(): signalRouteInfo failed"; + } + + //make a connect session to navigation service(current postion info) + if (!QDBusConnection::sessionBus().connect( + QString(), + QString(), + m_pathName, + "signalPosInfo", + this, + SLOT(positionSlot(double, double, double, double)))) { //slot + qDebug() << m_serverName << "sessionBus.connect(): signalPosInfo failed"; + } + + //make a connect session to navigation service(when demo stopped) + if (!QDBusConnection::sessionBus().connect( + QString(), + QString(), + m_pathName, + "signalStopDemo", + this, + SLOT(stopdemoSlot()))) { //slot + qDebug() << m_serverName << "sessionBus.connect(): signalStopDemo failed"; + } + + //make a connect session to navigation service(when arrived destination) + if (!QDBusConnection::sessionBus().connect( + QString(), + QString(), + m_pathName, + "signalArrvied", + this, + SLOT(arrivedestSlot()))) { //slot + qDebug() << m_serverName << "sessionBus.connect(): signalArrvied failed"; + } +} + +void dbus_client::initAPIs(QObject *parent){ + //connect the signal to qml inside function(addRoutePointsQml -> do_addRoutePoint) + if(!QObject::connect(this, SIGNAL(addRoutePointsQml(QVariant, QVariant, QVariant, QVariant)), + parent, SLOT(do_addRoutePoint(QVariant, QVariant, QVariant, QVariant)))) { + qDebug() << m_serverName << "SIGNAL:addRoutePointsQml to qmlSLOT:do_addRoutePoint connect is failed"; + } + + //connect the signal to qml inside function(positionQml -> do_setCoordinate) + if(!QObject::connect(this, SIGNAL(positionQml(QVariant, QVariant,QVariant, QVariant)), + parent, SLOT(do_setCoordinate(QVariant, QVariant,QVariant, QVariant)))) { + qDebug() << m_serverName << "SIGNAL:positionQml to qmlSLOT:do_setCoordinate connect is failed"; + } + + //connect the signal to qml inside function(stopdemoQml -> do_stopnavidemo) + if(!QObject::connect(this, SIGNAL(stopdemoQml()), + parent, SLOT(do_stopnavidemo()))) { + qDebug() << m_serverName << "SIGNAL:stopdemoQml to qmlSLOT:do_stopnavidemo connect is failed"; + } + + //connect the signal to qml inside function(arrivedestQml -> do_arrivedest) + if(!QObject::connect(this, SIGNAL(arrivedestQml()), + parent, SLOT(do_arrivedest()))) { + qDebug() << m_serverName << "SIGNAL:arrivedestQml to qmlSLOT:do_arrivedest connect is failed"; + } +} + +//Signal&&Method +//addRoutePointsSlot -> addRoutePointsQml(use for qml) +void dbus_client::addRoutePointsSlot(double route_Lat_s, double route_Lon_s, double route_Lat_e, double route_Lon_e) +{ + emit addRoutePointsQml(route_Lat_s, route_Lon_s, route_Lat_e, route_Lon_e); +} + +//positionSlot -> positionQml(use for qml) +void dbus_client::positionSlot(double cur_Lat_p, double cur_Lon_p,double cur_direction, double cur_distance) +{ + emit positionQml(cur_Lat_p, cur_Lon_p,cur_direction,cur_distance); +} + +//stopdemoSlot -> stopdemoQml(use for qml) +void dbus_client::stopdemoSlot() +{ + emit stopdemoQml(); +} + +//arrivedestSlot -> arrivedestQml(use for qml) +void dbus_client::arrivedestSlot() +{ + emit arrivedestQml(); +} diff --git a/app/dbus_client.h b/app/dbus_client.h new file mode 100644 index 0000000..0abae31 --- /dev/null +++ b/app/dbus_client.h @@ -0,0 +1,46 @@ +#ifndef DBUS_CLIENT_H +#define DBUS_CLIENT_H + +#include "naviapi_interface.h" +#include "naviapi_adaptor.h" +#include + +class dbus_client : public QObject{ + Q_OBJECT + QString m_serverName; + QString m_pathName; + QString m_objName; + +public: + dbus_client(const QString &pathName, + const QString &objName, + const QString &serverName, + QObject *parent = nullptr); + ~dbus_client(); + +private: + //DBus & API init + void initDBus(); + void initAPIs(QObject*); + +signals: + //notify add routepoints signal to qml + void addRoutePointsQml(QVariant, QVariant, QVariant, QVariant); + //notify current position signal to qml + void positionQml(QVariant, QVariant,QVariant, QVariant); + //notify stop demo signal to qml + void stopdemoQml(); + //notify arrive destination signal to qml + void arrivedestQml(); + +private slots: + //receive add routepoints notify from navigation service + void addRoutePointsSlot(double route_Lat_s, double route_Lon_s, double route_Lat_e, double route_Lon_e); + //receive current position notify from navigation service + void positionSlot(double cur_Lat_p, double cur_Lon_p,double cur_direction, double cur_distance); + //receive stop demo notify from navigation service + void stopdemoSlot(); + //receive arrive destination notify from navigation service + void arrivedestSlot(); +}; +#endif // DBUS_CLIENT_H diff --git a/app/images/arrow-0.png b/app/images/arrow-0.png deleted file mode 100644 index 50b07ad..0000000 Binary files a/app/images/arrow-0.png and /dev/null differ diff --git a/app/images/arrow-l-180.png b/app/images/arrow-l-180.png deleted file mode 100644 index 5c9223d..0000000 Binary files a/app/images/arrow-l-180.png and /dev/null differ diff --git a/app/images/arrow-l-30.png b/app/images/arrow-l-30.png deleted file mode 100644 index 3503b07..0000000 Binary files a/app/images/arrow-l-30.png and /dev/null differ diff --git a/app/images/arrow-l-45.png b/app/images/arrow-l-45.png deleted file mode 100644 index a033731..0000000 Binary files a/app/images/arrow-l-45.png and /dev/null differ diff --git a/app/images/arrow-l-75.png b/app/images/arrow-l-75.png deleted file mode 100644 index cdaffec..0000000 Binary files a/app/images/arrow-l-75.png and /dev/null differ diff --git a/app/images/arrow-r-180.png b/app/images/arrow-r-180.png deleted file mode 100644 index 823046e..0000000 Binary files a/app/images/arrow-r-180.png and /dev/null differ diff --git a/app/images/arrow-r-30.png b/app/images/arrow-r-30.png deleted file mode 100644 index 3abf7f0..0000000 Binary files a/app/images/arrow-r-30.png and /dev/null differ diff --git a/app/images/arrow-r-45.png b/app/images/arrow-r-45.png deleted file mode 100644 index ae27ad4..0000000 Binary files a/app/images/arrow-r-45.png and /dev/null differ diff --git a/app/images/arrow-r-75.png b/app/images/arrow-r-75.png deleted file mode 100644 index 24b296b..0000000 Binary files a/app/images/arrow-r-75.png and /dev/null differ diff --git a/app/images/car-focus.png b/app/images/car-focus.png deleted file mode 100644 index 0b2a167..0000000 Binary files a/app/images/car-focus.png and /dev/null differ diff --git a/app/images/car-marker.png b/app/images/car-marker.png index 9ca4d50..34bab94 100755 Binary files a/app/images/car-marker.png and b/app/images/car-marker.png differ diff --git a/app/images/car-marker2.png b/app/images/car-marker2.png deleted file mode 100755 index 34bab94..0000000 Binary files a/app/images/car-marker2.png and /dev/null differ diff --git a/app/images/destination.png b/app/images/destination.png new file mode 100644 index 0000000..2d92322 Binary files /dev/null and b/app/images/destination.png differ diff --git a/app/images/destination_full.png b/app/images/destination_full.png new file mode 100644 index 0000000..e5c79d9 Binary files /dev/null and b/app/images/destination_full.png differ diff --git a/app/images/images.qrc b/app/images/images.qrc index 8089dcf..fc51ad3 100644 --- a/app/images/images.qrc +++ b/app/images/images.qrc @@ -1,22 +1,17 @@ - car-focus.png car-marker.png - car-marker2.png marker-green.png - marker-red.png - marker-end.png - simple-bottom-background-white.png + marker-end.png simple-bottom-background-black.png - arrow-0.png - arrow-l-30.png - arrow-l-45.png - arrow-l-75.png - arrow-l-180.png - arrow-r-30.png - arrow-r-45.png - arrow-r-75.png - arrow-r-180.png + arrow-l-30-full.png + arrow-l-45-full.png + arrow-l-75-full.png + arrow-l-180-full.png + arrow-r-30-full.png + arrow-r-45-full.png + arrow-r-75-full.png + arrow-r-180-full.png arrow-0-large.png arrow-l-30-large.png arrow-l-45-large.png @@ -26,13 +21,8 @@ arrow-r-45-large.png arrow-r-75-large.png arrow-r-180-large.png - arrow-l-30-full.png - arrow-l-45-full.png - arrow-l-75-full.png - arrow-l-180-full.png - arrow-r-30-full.png - arrow-r-45-full.png - arrow-r-75-full.png - arrow-r-180-full.png + simple-background-white.png + destination.png + destination_full.png diff --git a/app/images/marker-red.png b/app/images/marker-red.png deleted file mode 100644 index e2f2078..0000000 Binary files a/app/images/marker-red.png and /dev/null differ diff --git a/app/images/simple-background-white.png b/app/images/simple-background-white.png new file mode 100644 index 0000000..df9c2a0 Binary files /dev/null and b/app/images/simple-background-white.png differ diff --git a/app/images/simple-bottom-background-white.png b/app/images/simple-bottom-background-white.png deleted file mode 100644 index df9c2a0..0000000 Binary files a/app/images/simple-bottom-background-white.png and /dev/null differ diff --git a/app/main.cpp b/app/main.cpp index 779af3f..cb9675a 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -6,8 +6,10 @@ #include #include #include +#include #include "qcheapruler.hpp" +#include "dbus_client.h" #ifdef HAVE_LIBHOMESCREEN #include @@ -18,6 +20,12 @@ int main(int argc, char *argv[]) { + if (!QDBusConnection::sessionBus().isConnected()) { + qWarning("Cannot connect to the D-Bus session bus.\n" + "Please check your system settings and try again.\n"); + return 1; + } + QString myname = QString("tbtnavi"); QGuiApplication app(argc, argv); @@ -35,23 +43,11 @@ int main(int argc, char *argv[]) QStringList positionalArguments = parser.positionalArguments(); QQmlApplicationEngine engine; - QQmlContext *context = engine.rootContext(); - QUrl bindingAddress; int port = 0; QString secret; if (positionalArguments.length() == 2) { port = positionalArguments.takeFirst().toInt(); secret = positionalArguments.takeFirst(); - bindingAddress.setScheme(QStringLiteral("ws")); - bindingAddress.setHost(QStringLiteral("localhost")); - bindingAddress.setPort(port); - bindingAddress.setPath(QStringLiteral("/api")); - QUrlQuery query; - query.addQueryItem(QStringLiteral("token"), secret); - bindingAddress.setQuery(query); - context->setContextProperty(QStringLiteral("bindingAddress"), bindingAddress); - } else { - context->setContextProperty(QStringLiteral("bindingAddress"), bindingAddress); } #ifdef HAVE_QLIBWINDOWMANAGER @@ -98,13 +94,20 @@ int main(int argc, char *argv[]) QObject *root = engine.rootObjects().first(); QQuickWindow *window = qobject_cast(root); + + //make the DBus connection info + QString pathBase = "org.agl."; + QString objBase = "/org/agl/"; + QString serverName = "naviapi"; + QObject *mapWindow = root->findChild("mapwindow"); + dbus_client dbus(pathBase, objBase, serverName, mapWindow); + #ifdef HAVE_QLIBWINDOWMANAGER // QObject::connect(window, SIGNAL(frameSwapped()), qwm, SLOT(slotActivateSurface())); // Create an event callback against an event type. Here a lambda is called when SyncDraw event occurs qwm->set_event_handler(QLibWindowmanager::Event_SyncDraw, [root, qwm, myname](json_object *object) { fprintf(stderr, "Surface got syncDraw!\n"); qwm->endDraw(myname); - QMetaObject::invokeMethod(root, "startDemo", Q_ARG(QVariant, true)); }); // Create an event callback against an event type. Here a lambda is called when SyncDraw event occurs qwm->set_event_handler(QLibWindowmanager::Event_Active, [root](json_object *object) { diff --git a/app/org.agl.naviapi.xml b/app/org.agl.naviapi.xml new file mode 100644 index 0000000..d1538e7 --- /dev/null +++ b/app/org.agl.naviapi.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/qcheapruler.cpp b/app/qcheapruler.cpp index 50b2116..65d359d 100644 --- a/app/qcheapruler.cpp +++ b/app/qcheapruler.cpp @@ -1,73 +1,53 @@ #include "qcheapruler.hpp" +#include "naviapi_adaptor.h" #include QCheapRuler::QCheapRuler() { - readCoordinateFromFile(); - m_Timer = new QTimer(this); + //set the default current position + m_currentPosition = QGeoCoordinate(36.136261, -115.151254); } QCheapRuler::~QCheapRuler() { - m_Timer->stop(); - m_routpoint.clear(); } +//get route distance double QCheapRuler::distance() const { return m_distance; } +//get current distance along the route double QCheapRuler::currentDistance() const { return m_currentDistance; } -void QCheapRuler::setCurrentCoordinate(QString m_latitude,QString m_longitude) +//set current position below the coordinate info from navigation service +void QCheapRuler::setCurrentPosition(double latitude, double longitude, double distance) { - double latitude = m_latitude.toDouble(); - double longitude = m_longitude.toDouble(); - setCurrentPosition(latitude,longitude); -} - -void QCheapRuler::setCurrentPosition(double latitude,double longitude) -{ - if((latitude == 0.0)&&(longitude == 0.0)) - { - emit arrivedDest(); - } - else + //set coordinate info and notify the changes when latitude or longitude info has changed + if((m_currentPosition.latitude() != latitude) + ||(m_currentPosition.longitude() != longitude)) { - if((m_currentPosition.latitude() != latitude) - ||(m_currentPosition.longitude() != longitude)) - { - cr::point pre_postion = cr::point(m_currentPosition.longitude(),m_currentPosition.latitude()); - cr::point current_postion = cr::point(longitude,latitude); - m_currentDistance += ruler().distance(pre_postion,current_postion); - emit currentDistanceChanged(); - - m_currentPosition.setLatitude(latitude); - m_currentPosition.setLongitude(longitude); - emit currentPositionChanged(); - } + m_currentPosition.setLatitude(latitude); + m_currentPosition.setLongitude(longitude); + emit currentPositionChanged(); } -} -void QCheapRuler::readRoutePosition() -{ - m_index ++; - if(m_index < m_routpoint.size()) - { - qDebug("m_index:%d lan:%f lon:%f!\n",m_index,m_routpoint.at(m_index).y,m_routpoint.at(m_index).x); - setCurrentPosition(m_routpoint.at(m_index).y,m_routpoint.at(m_index).x); - } - else + //set current distance info and notify the changes when the info has changed + //but it will not send notify when it start or stop demo + if((m_currentDistance != distance) + &&(distance != 0.0)) { - m_Timer->stop(); + m_currentDistance = distance; + emit currentDistanceChanged(); } } +//get current position(coordinate) QGeoCoordinate QCheapRuler::currentPosition() const { return m_currentPosition; @@ -79,25 +59,7 @@ QJSValue QCheapRuler::path() const return QJSValue(); } -void QCheapRuler::startnaviDemo() -{ - if (m_routpoint.empty()) { - return; - } - - m_currentDistance = 0.; - m_index = 0; - connect(m_Timer, SIGNAL(timeout()), this, SLOT(readRoutePosition())); - m_Timer->start(100); -} - -void QCheapRuler::stopnaviDemo() -{ - m_currentDistance = 0.; - m_index = 0; - m_Timer->stop(); -} - +//set route path and get the total distance void QCheapRuler::setPath(const QJSValue &value) { if (!value.isArray()) @@ -106,6 +68,7 @@ void QCheapRuler::setPath(const QJSValue &value) m_path.clear(); quint32 length = value.property(QStringLiteral("length")).toUInt(); + //push back the coordinate info along the route for (unsigned i = 0; i < length; ++i) { auto property = value.property(i); cr::point coordinate = { 0., 0. }; @@ -119,6 +82,7 @@ void QCheapRuler::setPath(const QJSValue &value) m_path.push_back(coordinate); } + //count the total distance along the route double distance = ruler().lineDistance(m_path); if (m_distance != distance) { m_distance = distance; @@ -127,6 +91,18 @@ void QCheapRuler::setPath(const QJSValue &value) emit pathChanged(); } +//init the route and postion info when start in the first time.(can be called by qml) +void QCheapRuler::initRouteInfo() +{ + //send "getRouteInfo" message to the navigation service + QDBusMessage message = QDBusMessage::createSignal("/", "org.agl.naviapi", "getRouteInfo"); + if(!QDBusConnection::sessionBus().send(message)) + { + qDebug() << "initRouteInfo" << "sessionBus.send(): getRouteInfo failed"; + } +} + +//init the CheapRuler class cr::CheapRuler QCheapRuler::ruler() const { if (m_path.empty()) { @@ -135,36 +111,3 @@ cr::CheapRuler QCheapRuler::ruler() const return cr::CheapRuler(m_currentPosition.latitude(), cr::CheapRuler::Kilometers); } } - -void QCheapRuler::readCoordinateFromFile() -{ - m_routpoint.clear(); - - QFile *file = new QFile("/var/local/lib/afm/applications/tbtnavi/0.1/Coordinate.txt"); - if(!file->exists()) - { - file = new QFile(":/qml/Coordinate.txt"); - if(!file->exists()) - { - qDebug("Coordinate File not exit!\n"); - return; - } - } - - if(!file->open(QIODevice::ReadOnly | QIODevice::Text)) - { - qDebug("Can not open Coordinate File!\n"); - return; - } - - QTextStream m_StreamIn(file); - while (!m_StreamIn.atEnd()) { - QString line = m_StreamIn.readLine(); - - QStringList sections = line.split(QRegExp(",")); - cr::point temp = cr::point(sections.at(1).trimmed().toDouble(),sections.at(0).trimmed().toDouble()); - m_routpoint.push_back(temp); - } - - file->close(); -} diff --git a/app/qcheapruler.hpp b/app/qcheapruler.hpp index 6c569a8..c39e958 100644 --- a/app/qcheapruler.hpp +++ b/app/qcheapruler.hpp @@ -11,51 +11,46 @@ namespace cr = mapbox::cheap_ruler; class QCheapRuler : public QObject{ Q_OBJECT - Q_PROPERTY(double distance READ distance NOTIFY distanceChanged) + //registy the read write¬ify function for qml + //the distance from start point to end point(read only) + Q_PROPERTY(double distance READ distance) + //the distance from start point to current postion along the route(read notify) Q_PROPERTY(double currentDistance READ currentDistance NOTIFY currentDistanceChanged) - Q_PROPERTY(QGeoCoordinate currentPosition READ currentPosition NOTIFY currentPositionChanged) + //the coordinate info of current postion(read) + Q_PROPERTY(QGeoCoordinate currentPosition READ currentPosition NOTIFY currentPositionChanged) + //the route path info postion(read write¬ify) Q_PROPERTY(QJSValue path READ path WRITE setPath NOTIFY pathChanged) public: QCheapRuler(); ~QCheapRuler(); + //read write¬ify function for qml double distance() const; - double currentDistance() const; - QGeoCoordinate currentPosition() const; - QJSValue path() const; void setPath(const QJSValue &value); - Q_INVOKABLE void setCurrentCoordinate(QString,QString); - Q_INVOKABLE void startnaviDemo(); - Q_INVOKABLE void stopnaviDemo(); - -public slots: - void readRoutePosition(); + //functions that can called by qml(Q_INVOKABLE) + Q_INVOKABLE void initRouteInfo(); + Q_INVOKABLE void setCurrentPosition(double, double, double); signals: - void distanceChanged(); + //notify signals to qml + //notify signal when the distance from start point to current postion changed void currentDistanceChanged(); + //notify signal when currentPosition changed void currentPositionChanged(); + //notify signal when the distance from start point to current postion changed void pathChanged(); - void arrivedDest(); private: cr::CheapRuler ruler() const; - void readCoordinateFromFile(); - void setCurrentPosition(double,double); - ulong m_index = 0; double m_distance = 0.; double m_currentDistance = 0.; - QGeoCoordinate m_currentPosition = QGeoCoordinate(36.12546, -115.1729906); + QGeoCoordinate m_currentPosition; cr::line_string m_path; - - cr::line_string m_routpoint; - - QTimer *m_Timer; }; diff --git a/app/qml/Coordinate.txt b/app/qml/Coordinate.txt deleted file mode 100644 index 045f4aa..0000000 --- a/app/qml/Coordinate.txt +++ /dev/null @@ -1,12390 +0,0 @@ -36.12546,-115.173 -36.12546,-115.1729906 -36.12545999,-115.1729817 -36.12545999,-115.1729722 -36.12545998,-115.1729628 -36.12545998,-115.1729533 -36.12545997,-115.1729445 -36.12545997,-115.1729334 -36.12545996,-115.172925 -36.12545996,-115.1729161 -36.12545995,-115.1729078 -36.12545995,-115.1728984 -36.12545994,-115.1728911 -36.12545994,-115.1728828 -36.12545994,-115.1728756 -36.12545993,-115.1728661 -36.12545993,-115.1728578 -36.12545992,-115.17285 -36.12545992,-115.1728412 -36.12545991,-115.1728317 -36.12545991,-115.1728223 -36.1254599,-115.1728134 -36.1254599,-115.1728039 -36.12545989,-115.1727951 -36.12545989,-115.1727856 -36.12545989,-115.1727762 -36.12545988,-115.1727673 -36.12545988,-115.1727578 -36.12545987,-115.1727484 -36.12545987,-115.1727395 -36.12545986,-115.1727301 -36.12545986,-115.1727206 -36.12545985,-115.1727117 -36.12545985,-115.1727023 -36.12545984,-115.1726929 -36.12545984,-115.172684 -36.12545983,-115.1726745 -36.12545983,-115.1726651 -36.12545982,-115.1726562 -36.12545982,-115.1726468 -36.12545981,-115.1726373 -36.12545981,-115.1726284 -36.1254598,-115.172619 -36.1254598,-115.1726095 -36.1254598,-115.1726007 -36.12545979,-115.1725912 -36.12545979,-115.1725818 -36.12545978,-115.1725729 -36.12545978,-115.1725634 -36.12545977,-115.172554 -36.12545977,-115.1725451 -36.12545976,-115.1725357 -36.12545976,-115.1725262 -36.12545975,-115.1725173 -36.12545975,-115.1725079 -36.12545974,-115.1724985 -36.12545974,-115.1724896 -36.12545973,-115.1724801 -36.12545973,-115.1724707 -36.12545972,-115.1724618 -36.12545972,-115.1724524 -36.12545971,-115.1724429 -36.12545971,-115.172434 -36.1254597,-115.1724246 -36.1254597,-115.1724151 -36.1254597,-115.1724057 -36.12545969,-115.1723968 -36.12545969,-115.1723874 -36.12545968,-115.1723779 -36.12545968,-115.172369 -36.12545967,-115.1723596 -36.12545967,-115.1723502 -36.12545966,-115.1723413 -36.12545966,-115.1723318 -36.12545965,-115.1723224 -36.12545965,-115.1723135 -36.12545964,-115.1723041 -36.12545964,-115.1722946 -36.12545963,-115.1722857 -36.12545963,-115.1722763 -36.12545962,-115.1722669 -36.12545962,-115.172258 -36.12545961,-115.1722485 -36.12545961,-115.1722391 -36.12545961,-115.1722302 -36.1254596,-115.1722208 -36.1254596,-115.1722113 -36.12545959,-115.1722024 -36.12545959,-115.172193 -36.12545958,-115.1721835 -36.12545958,-115.1721747 -36.12545957,-115.1721652 -36.12545957,-115.1721558 -36.12545956,-115.1721469 -36.12545956,-115.1721374 -36.12545955,-115.172128 -36.12545955,-115.1721191 -36.12545954,-115.1721097 -36.12545954,-115.1721002 -36.12545953,-115.1720913 -36.12545953,-115.1720819 -36.12545952,-115.1720725 -36.12545952,-115.1720636 -36.12545951,-115.1720541 -36.12545951,-115.1720447 -36.12545951,-115.1720358 -36.1254595,-115.1720264 -36.1254595,-115.1720169 -36.12545949,-115.172008 -36.12545949,-115.1719986 -36.12545948,-115.1719891 -36.12545948,-115.1719803 -36.12545947,-115.1719708 -36.12545947,-115.1719614 -36.12545946,-115.1719525 -36.12545946,-115.171943 -36.12545945,-115.1719336 -36.12545945,-115.1719247 -36.12545944,-115.1719153 -36.12545944,-115.1719058 -36.12545943,-115.1718969 -36.12545943,-115.1718875 -36.12545942,-115.1718781 -36.12545942,-115.1718692 -36.12545941,-115.1718597 -36.12545941,-115.1718503 -36.12545941,-115.1718414 -36.1254594,-115.171832 -36.1254594,-115.1718225 -36.12545939,-115.1718136 -36.12545939,-115.1718042 -36.12545938,-115.1717947 -36.12545938,-115.1717859 -36.12545937,-115.1717764 -36.12545937,-115.171767 -36.12545936,-115.1717581 -36.12545936,-115.1717486 -36.12545935,-115.1717398 -36.12545935,-115.1717303 -36.12545934,-115.1717209 -36.12545934,-115.171712 -36.12545933,-115.1717026 -36.12545933,-115.1716931 -36.12545932,-115.1716842 -36.12545932,-115.1716748 -36.12545932,-115.1716653 -36.12545931,-115.1716565 -36.12545931,-115.171647 -36.1254593,-115.1716376 -36.1254593,-115.1716287 -36.12545929,-115.1716192 -36.12545929,-115.1716098 -36.12545928,-115.1716009 -36.12545928,-115.1715915 -36.12545927,-115.171582 -36.12545927,-115.1715731 -36.12545926,-115.1715637 -36.12545926,-115.1715543 -36.12545925,-115.1715454 -36.12545925,-115.1715359 -36.12545924,-115.1715265 -36.12545924,-115.1715176 -36.12545923,-115.1715082 -36.12545923,-115.1714987 -36.12545923,-115.1714898 -36.12545922,-115.1714804 -36.12545922,-115.1714709 -36.12545921,-115.1714621 -36.12545921,-115.1714526 -36.1254592,-115.1714432 -36.1254592,-115.1714343 -36.12545919,-115.1714248 -36.12545919,-115.1714154 -36.12545918,-115.1714065 -36.12545918,-115.1713971 -36.12545917,-115.1713876 -36.12545917,-115.1713787 -36.12545916,-115.1713693 -36.12545916,-115.1713599 -36.12545915,-115.171351 -36.12545915,-115.1713415 -36.12545914,-115.1713321 -36.12545914,-115.1713232 -36.12545913,-115.1713138 -36.12545913,-115.1713043 -36.12545913,-115.1712954 -36.12545912,-115.171286 -36.12545912,-115.1712765 -36.12545911,-115.1712677 -36.12545911,-115.1712582 -36.1254591,-115.1712488 -36.1254591,-115.1712399 -36.12545909,-115.1712304 -36.12545909,-115.171221 -36.12545908,-115.1712121 -36.12545908,-115.1712027 -36.12545907,-115.1711932 -36.12545907,-115.1711843 -36.12545906,-115.1711749 -36.12545906,-115.1711655 -36.12545905,-115.1711566 -36.12545905,-115.1711471 -36.12545904,-115.1711377 -36.12545904,-115.1711288 -36.12545904,-115.1711194 -36.12545903,-115.1711099 -36.12545903,-115.171101 -36.12545902,-115.1710916 -36.12545902,-115.1710822 -36.12545901,-115.1710733 -36.12545901,-115.1710638 -36.125459,-115.1710544 -36.12546164,-115.1710466 -36.12546616,-115.1710389 -36.12547068,-115.1710313 -36.12547494,-115.1710241 -36.12547946,-115.1710165 -36.12548398,-115.1710089 -36.12548823,-115.1710017 -36.12549276,-115.1709941 -36.12549728,-115.1709865 -36.12550153,-115.1709793 -36.12550605,-115.1709717 -36.12551058,-115.1709641 -36.12551483,-115.1709569 -36.12551935,-115.1709493 -36.12552387,-115.1709416 -36.12552813,-115.1709345 -36.12552945,-115.1709254 -36.12553,-115.170916 -36.12553052,-115.1709071 -36.12553108,-115.1708977 -36.12553163,-115.1708883 -36.12553215,-115.1708794 -36.12553271,-115.17087 -36.1255338,-115.1708607 -36.1255354,-115.170852 -36.12553711,-115.1708428 -36.12553946,-115.1708339 -36.12554233,-115.1708257 -36.12554539,-115.1708171 -36.12554845,-115.1708084 -36.1255524,-115.1708012 -36.12555793,-115.1707947 -36.12556347,-115.1707881 -36.12556868,-115.170782 -36.12557422,-115.1707755 -36.12558029,-115.17077 -36.12558709,-115.1707671 -36.12559432,-115.1707639 -36.12560155,-115.1707608 -36.12560836,-115.1707579 -36.12561502,-115.1707558 -36.12561529,-115.1707652 -36.12561555,-115.1707741 -36.12561582,-115.1707835 -36.12561609,-115.170793 -36.12561635,-115.1708018 -36.12561662,-115.1708113 -36.1256169,-115.1708207 -36.12561715,-115.1708296 -36.12561742,-115.170839 -36.1256177,-115.1708485 -36.12561795,-115.1708573 -36.1256182,-115.1708668 -36.12561844,-115.1708762 -36.12561866,-115.1708851 -36.1256189,-115.1708945 -36.12561914,-115.170904 -36.12561936,-115.1709129 -36.1256196,-115.1709223 -36.12561984,-115.1709317 -36.12562007,-115.1709406 -36.12562031,-115.17095 -36.12562054,-115.1709595 -36.12562077,-115.1709684 -36.12562101,-115.1709778 -36.12562125,-115.1709872 -36.12562147,-115.1709961 -36.12562171,-115.1710056 -36.12562195,-115.171015 -36.12562216,-115.1710239 -36.12562239,-115.1710333 -36.12562262,-115.1710428 -36.12562284,-115.1710522 -36.12562305,-115.1710611 -36.12562328,-115.1710705 -36.1256235,-115.17108 -36.12562372,-115.1710888 -36.12562394,-115.1710983 -36.12562417,-115.1711077 -36.12562438,-115.1711166 -36.1256246,-115.171126 -36.12562483,-115.1711355 -36.12562504,-115.1711444 -36.12562527,-115.1711538 -36.12562549,-115.1711632 -36.1256257,-115.1711721 -36.12562593,-115.1711816 -36.12562616,-115.171191 -36.12562637,-115.1711999 -36.12562659,-115.1712093 -36.12562682,-115.1712188 -36.12562703,-115.1712276 -36.12562726,-115.1712371 -36.12562748,-115.1712465 -36.12562769,-115.1712554 -36.12562792,-115.1712648 -36.12562814,-115.1712743 -36.12562836,-115.1712832 -36.12562858,-115.1712926 -36.12562881,-115.171302 -36.12562902,-115.1713109 -36.12562924,-115.1713203 -36.12562947,-115.1713298 -36.12562968,-115.1713387 -36.12562991,-115.1713481 -36.12563013,-115.1713575 -36.12563034,-115.1713664 -36.12563057,-115.1713759 -36.1256308,-115.1713853 -36.12563101,-115.1713942 -36.12563123,-115.1714036 -36.12563146,-115.1714131 -36.12563167,-115.1714219 -36.1256319,-115.1714314 -36.12563212,-115.1714408 -36.12563233,-115.1714497 -36.12563256,-115.1714591 -36.12563278,-115.1714686 -36.125633,-115.1714775 -36.12563322,-115.1714869 -36.12563345,-115.1714963 -36.12563366,-115.1715052 -36.12563388,-115.1715147 -36.12563411,-115.1715241 -36.12563432,-115.171533 -36.12563455,-115.1715424 -36.12563477,-115.1715519 -36.12563498,-115.1715607 -36.12563521,-115.1715702 -36.12563544,-115.1715796 -36.12563565,-115.1715885 -36.12563587,-115.1715979 -36.1256361,-115.1716074 -36.12563631,-115.1716163 -36.12563654,-115.1716257 -36.12563676,-115.1716351 -36.12563697,-115.171644 -36.1256372,-115.1716535 -36.12563742,-115.1716629 -36.12563764,-115.1716718 -36.12563786,-115.1716812 -36.12563809,-115.1716907 -36.1256383,-115.1716995 -36.12563852,-115.171709 -36.12563875,-115.1717184 -36.12563896,-115.1717273 -36.12563919,-115.1717367 -36.12563941,-115.1717462 -36.12563963,-115.1717551 -36.12563985,-115.1717645 -36.12564008,-115.1717739 -36.12564029,-115.1717828 -36.12564051,-115.1717922 -36.12564074,-115.1718017 -36.12564095,-115.1718106 -36.12564118,-115.17182 -36.1256414,-115.1718294 -36.12564161,-115.1718383 -36.12564184,-115.1718478 -36.12564206,-115.1718572 -36.12564228,-115.1718661 -36.1256425,-115.1718755 -36.12564273,-115.171885 -36.12564294,-115.1718938 -36.12564316,-115.1719033 -36.12564339,-115.1719127 -36.1256436,-115.1719216 -36.12564383,-115.171931 -36.12564405,-115.1719405 -36.12564427,-115.1719494 -36.12564449,-115.1719588 -36.12564472,-115.1719682 -36.12564493,-115.1719771 -36.12564515,-115.1719866 -36.12564538,-115.171996 -36.12564559,-115.1720049 -36.12564582,-115.1720143 -36.12564604,-115.1720238 -36.12564625,-115.1720326 -36.12564647,-115.1720421 -36.1256467,-115.1720515 -36.12564691,-115.1720604 -36.12564713,-115.1720698 -36.12564735,-115.1720793 -36.12564756,-115.1720882 -36.12564778,-115.1720976 -36.125648,-115.172107 -36.12564821,-115.1721159 -36.12564844,-115.1721254 -36.12564866,-115.1721348 -36.12564887,-115.1721437 -36.12564909,-115.1721531 -36.12564931,-115.1721626 -36.12564952,-115.1721714 -36.12564974,-115.1721809 -36.12564997,-115.1721903 -36.12565018,-115.1721992 -36.1256504,-115.1722086 -36.12565062,-115.1722181 -36.12565083,-115.172227 -36.12565105,-115.1722364 -36.12565128,-115.1722458 -36.12565149,-115.1722547 -36.12565171,-115.1722642 -36.12565193,-115.1722736 -36.12565214,-115.1722825 -36.12565236,-115.1722919 -36.12565258,-115.1723013 -36.12565279,-115.1723102 -36.12565302,-115.1723197 -36.12565324,-115.1723291 -36.12565345,-115.172338 -36.12565367,-115.1723474 -36.12565389,-115.1723569 -36.1256541,-115.1723657 -36.12565433,-115.1723752 -36.12565455,-115.1723846 -36.12565476,-115.1723935 -36.12565498,-115.1724029 -36.1256552,-115.1724124 -36.12565541,-115.1724213 -36.12565563,-115.1724307 -36.12565586,-115.1724401 -36.12565607,-115.172449 -36.12565629,-115.1724585 -36.12565651,-115.1724679 -36.12565672,-115.1724768 -36.12565694,-115.1724862 -36.12565717,-115.1724957 -36.12565737,-115.1725045 -36.1256576,-115.172514 -36.12565782,-115.1725234 -36.12565803,-115.1725323 -36.12565825,-115.1725417 -36.12565847,-115.1725512 -36.12565868,-115.1725601 -36.12565891,-115.1725695 -36.12565913,-115.1725789 -36.12565934,-115.1725878 -36.12565956,-115.1725973 -36.12565978,-115.1726067 -36.12565999,-115.1726156 -36.12566021,-115.172625 -36.12566044,-115.1726345 -36.12566065,-115.1726433 -36.12566087,-115.1726528 -36.12566109,-115.1726622 -36.1256613,-115.1726711 -36.12566152,-115.1726805 -36.12566175,-115.17269 -36.12566195,-115.1726989 -36.12566218,-115.1727083 -36.1256624,-115.1727177 -36.12566261,-115.1727266 -36.12566283,-115.1727361 -36.12566305,-115.1727455 -36.12566326,-115.1727544 -36.12566349,-115.1727638 -36.12566371,-115.1727733 -36.12566392,-115.1727821 -36.12566414,-115.1727916 -36.12566436,-115.172801 -36.12566457,-115.1728099 -36.12566479,-115.1728193 -36.12566502,-115.1728288 -36.12566523,-115.1728377 -36.12566545,-115.1728471 -36.12566567,-115.1728565 -36.12566588,-115.1728654 -36.1256661,-115.1728749 -36.12566633,-115.1728843 -36.12566654,-115.1728932 -36.12566676,-115.1729026 -36.12566698,-115.172912 -36.12566719,-115.1729209 -36.12566741,-115.1729304 -36.12566763,-115.1729398 -36.12566784,-115.1729487 -36.12566807,-115.1729581 -36.12566829,-115.1729676 -36.1256685,-115.1729765 -36.12566872,-115.1729859 -36.12566894,-115.1729953 -36.12566915,-115.1730042 -36.12566938,-115.1730136 -36.1256696,-115.1730231 -36.12566981,-115.173032 -36.12567003,-115.1730414 -36.12567025,-115.1730508 -36.12567046,-115.1730597 -36.12567068,-115.1730692 -36.12567091,-115.1730786 -36.12567112,-115.1730875 -36.12567134,-115.1730969 -36.12567156,-115.1731064 -36.12567177,-115.1731152 -36.12567199,-115.1731247 -36.12567222,-115.1731341 -36.12567244,-115.173143 -36.12567267,-115.1731524 -36.1256729,-115.1731619 -36.12567312,-115.1731708 -36.12567335,-115.1731802 -36.12567358,-115.1731896 -36.12567379,-115.1731985 -36.12567402,-115.173208 -36.12567425,-115.1732174 -36.12567447,-115.1732263 -36.1256747,-115.1732357 -36.12567493,-115.1732452 -36.12567515,-115.173254 -36.12567538,-115.1732635 -36.12567561,-115.1732729 -36.12567582,-115.1732818 -36.12567614,-115.1732912 -36.12567675,-115.1733006 -36.12567732,-115.1733095 -36.12567793,-115.1733189 -36.12567854,-115.1733283 -36.12567911,-115.1733372 -36.12567972,-115.1733466 -36.12568032,-115.173356 -36.12568089,-115.1733649 -36.1256815,-115.1733743 -36.12568211,-115.1733837 -36.12568268,-115.1733926 -36.12568329,-115.173402 -36.1256839,-115.1734114 -36.12568447,-115.1734202 -36.12568507,-115.1734296 -36.12568568,-115.1734391 -36.12568625,-115.1734479 -36.12568686,-115.1734573 -36.12568747,-115.1734667 -36.12568804,-115.1734756 -36.12568865,-115.173485 -36.12568925,-115.1734944 -36.12568982,-115.1735033 -36.12569043,-115.1735127 -36.12569104,-115.1735221 -36.12569161,-115.173531 -36.12569222,-115.1735404 -36.12569283,-115.1735498 -36.1256934,-115.1735587 -36.125694,-115.1735681 -36.12569461,-115.1735775 -36.12569518,-115.1735863 -36.12569579,-115.1735957 -36.1256964,-115.1736052 -36.12569697,-115.173614 -36.12569758,-115.1736234 -36.12569818,-115.1736328 -36.12569875,-115.1736417 -36.12569936,-115.1736511 -36.12569997,-115.1736605 -36.12570054,-115.1736694 -36.12570115,-115.1736788 -36.12570176,-115.1736882 -36.12570254,-115.173697 -36.12570356,-115.1737064 -36.12570457,-115.1737158 -36.12570552,-115.1737246 -36.12570653,-115.1737339 -36.12570754,-115.1737433 -36.12570849,-115.1737521 -36.1257095,-115.1737615 -36.12571051,-115.1737708 -36.12571146,-115.1737796 -36.12571247,-115.173789 -36.12571343,-115.1737978 -36.12571444,-115.1738072 -36.12571545,-115.1738165 -36.1257164,-115.1738253 -36.12571741,-115.1738347 -36.12571842,-115.173844 -36.12571937,-115.1738529 -36.12572038,-115.1738622 -36.12572139,-115.1738716 -36.12572235,-115.1738804 -36.12572336,-115.1738897 -36.12572437,-115.1738991 -36.12572532,-115.1739079 -36.12572633,-115.1739173 -36.12572734,-115.1739266 -36.12572829,-115.1739354 -36.1257293,-115.1739448 -36.12573031,-115.1739542 -36.12573127,-115.173963 -36.12573228,-115.1739723 -36.12573329,-115.1739817 -36.12573424,-115.1739905 -36.12573525,-115.1739999 -36.12573626,-115.1740092 -36.12573721,-115.174018 -36.12573822,-115.1740274 -36.12573923,-115.1740367 -36.12574018,-115.1740455 -36.1257412,-115.1740549 -36.12574221,-115.1740643 -36.12574316,-115.1740731 -36.12574417,-115.1740824 -36.12574518,-115.1740918 -36.12574613,-115.1741006 -36.12574714,-115.17411 -36.12574815,-115.1741193 -36.1257491,-115.1741281 -36.12575012,-115.1741375 -36.12575113,-115.1741469 -36.12575208,-115.1741557 -36.12575309,-115.174165 -36.1257541,-115.1741744 -36.12575505,-115.1741832 -36.12575606,-115.1741925 -36.12575707,-115.1742019 -36.12575802,-115.1742107 -36.12575904,-115.1742201 -36.12576005,-115.1742294 -36.125761,-115.1742382 -36.12576201,-115.1742476 -36.12576302,-115.174257 -36.12576397,-115.1742658 -36.12576498,-115.1742751 -36.12576599,-115.1742845 -36.12576694,-115.1742933 -36.12576795,-115.1743027 -36.12576897,-115.174312 -36.12576992,-115.1743208 -36.12577093,-115.1743302 -36.12577194,-115.1743395 -36.12577289,-115.1743484 -36.1257739,-115.1743577 -36.12577491,-115.1743671 -36.12577586,-115.1743759 -36.12577687,-115.1743852 -36.12577789,-115.1743946 -36.12577884,-115.1744034 -36.12577985,-115.1744128 -36.12578086,-115.1744221 -36.12578181,-115.1744309 -36.12578282,-115.1744403 -36.12578383,-115.1744497 -36.12578478,-115.1744585 -36.12578579,-115.1744678 -36.1257868,-115.1744772 -36.12578775,-115.174486 -36.12578876,-115.1744954 -36.12578976,-115.1745047 -36.12579071,-115.1745135 -36.12579172,-115.1745229 -36.12579272,-115.1745323 -36.12579367,-115.1745411 -36.12579468,-115.1745504 -36.12579568,-115.1745598 -36.12579663,-115.1745686 -36.12579764,-115.174578 -36.12579864,-115.1745873 -36.12579959,-115.1745961 -36.12580059,-115.1746055 -36.1258016,-115.1746148 -36.12580255,-115.1746237 -36.12580355,-115.174633 -36.12580456,-115.1746424 -36.12580551,-115.1746512 -36.12580651,-115.1746605 -36.12580752,-115.1746699 -36.12580846,-115.1746787 -36.12580947,-115.1746881 -36.12581048,-115.1746974 -36.12581142,-115.1747062 -36.12581243,-115.1747156 -36.12581344,-115.174725 -36.12581438,-115.1747338 -36.12581539,-115.1747431 -36.12581639,-115.1747525 -36.12581734,-115.1747613 -36.12581835,-115.1747707 -36.12581935,-115.17478 -36.1258203,-115.1747888 -36.12582131,-115.1747982 -36.12582231,-115.1748076 -36.12582326,-115.1748164 -36.12582427,-115.1748257 -36.12582527,-115.1748351 -36.12582622,-115.1748439 -36.12582722,-115.1748533 -36.12582823,-115.1748626 -36.12582918,-115.1748714 -36.12583018,-115.1748808 -36.12583119,-115.1748901 -36.12583214,-115.174899 -36.12583314,-115.1749083 -36.12583415,-115.1749177 -36.12583509,-115.1749265 -36.1258361,-115.1749359 -36.12583711,-115.1749452 -36.12583805,-115.174954 -36.12583906,-115.1749634 -36.12584007,-115.1749727 -36.12584101,-115.1749816 -36.12584202,-115.1749909 -36.12584302,-115.1750003 -36.12584397,-115.1750091 -36.12584498,-115.1750184 -36.12584598,-115.1750278 -36.12584693,-115.1750366 -36.12584794,-115.175046 -36.12584894,-115.1750553 -36.12584989,-115.1750641 -36.1258509,-115.1750735 -36.1258519,-115.1750829 -36.12585285,-115.1750917 -36.12585385,-115.175101 -36.12585486,-115.1751104 -36.12585581,-115.1751192 -36.12585681,-115.1751286 -36.12585782,-115.1751379 -36.12585877,-115.1751467 -36.12585977,-115.1751561 -36.12586078,-115.1751655 -36.12586172,-115.1751743 -36.12586273,-115.1751836 -36.12586374,-115.175193 -36.12586468,-115.1752018 -36.12586569,-115.1752112 -36.1258667,-115.1752205 -36.12586764,-115.1752293 -36.12586865,-115.1752387 -36.12586965,-115.175248 -36.1258706,-115.1752569 -36.12587161,-115.1752662 -36.12587261,-115.1752756 -36.12587356,-115.1752844 -36.12587457,-115.1752937 -36.12587557,-115.1753031 -36.12587652,-115.1753119 -36.12587753,-115.1753213 -36.12587853,-115.1753306 -36.12587948,-115.1753394 -36.12588048,-115.1753488 -36.12588149,-115.1753582 -36.12588244,-115.175367 -36.12588344,-115.1753763 -36.12588445,-115.1753857 -36.1258854,-115.1753945 -36.1258864,-115.1754039 -36.12588741,-115.1754132 -36.12588835,-115.175422 -36.12588936,-115.1754314 -36.12589037,-115.1754408 -36.12589131,-115.1754496 -36.12589232,-115.1754589 -36.12589333,-115.1754683 -36.12589427,-115.1754771 -36.12589528,-115.1754865 -36.12589628,-115.1754958 -36.12589723,-115.1755046 -36.12589824,-115.175514 -36.12589924,-115.1755234 -36.12590019,-115.1755322 -36.1259012,-115.1755415 -36.1259022,-115.1755509 -36.12590315,-115.1755597 -36.12590416,-115.1755691 -36.12590516,-115.1755784 -36.12590611,-115.1755872 -36.12590711,-115.1755966 -36.12590812,-115.1756059 -36.12590907,-115.1756148 -36.12591007,-115.1756241 -36.12591108,-115.1756335 -36.12591203,-115.1756423 -36.12591303,-115.1756516 -36.12591404,-115.175661 -36.12591499,-115.1756698 -36.12591599,-115.1756792 -36.125917,-115.1756885 -36.12591794,-115.1756973 -36.12591895,-115.1757067 -36.12591996,-115.1757161 -36.1259209,-115.1757249 -36.12592191,-115.1757342 -36.12592291,-115.1757436 -36.12592386,-115.1757524 -36.12592487,-115.1757618 -36.12592587,-115.1757711 -36.12592682,-115.1757799 -36.12592783,-115.1757893 -36.12592883,-115.1757987 -36.12592978,-115.1758075 -36.12593079,-115.1758168 -36.12593179,-115.1758262 -36.12593274,-115.175835 -36.12593374,-115.1758444 -36.12593475,-115.1758537 -36.1259357,-115.1758625 -36.1259367,-115.1758719 -36.12593771,-115.1758813 -36.12593866,-115.1758901 -36.12593966,-115.1758994 -36.12594067,-115.1759088 -36.12594162,-115.1759176 -36.12594262,-115.175927 -36.12594363,-115.1759363 -36.12594457,-115.1759451 -36.12594558,-115.1759545 -36.12594659,-115.1759638 -36.12594753,-115.1759727 -36.12594854,-115.175982 -36.12594955,-115.1759914 -36.12595049,-115.1760002 -36.1259515,-115.1760095 -36.1259525,-115.1760189 -36.12595345,-115.1760277 -36.12595446,-115.1760371 -36.12595546,-115.1760464 -36.12595641,-115.1760552 -36.12595742,-115.1760646 -36.12595842,-115.176074 -36.12595937,-115.1760828 -36.12596037,-115.1760921 -36.12596138,-115.1761015 -36.12596233,-115.1761103 -36.12596333,-115.1761197 -36.12596434,-115.176129 -36.12596529,-115.1761378 -36.12596629,-115.1761472 -36.1259673,-115.1761566 -36.12596825,-115.1761654 -36.12596925,-115.1761747 -36.12597026,-115.1761841 -36.1259712,-115.1761929 -36.12597221,-115.1762023 -36.12597322,-115.1762116 -36.12597416,-115.1762204 -36.12597517,-115.1762298 -36.12597618,-115.1762392 -36.12597712,-115.176248 -36.12597813,-115.1762573 -36.12597913,-115.1762667 -36.12598008,-115.1762755 -36.12598109,-115.1762849 -36.12598209,-115.1762942 -36.12598304,-115.176303 -36.12598405,-115.1763124 -36.12598505,-115.1763217 -36.125986,-115.1763306 -36.125987,-115.1763399 -36.12598801,-115.1763493 -36.12598896,-115.1763581 -36.12598996,-115.1763674 -36.12599097,-115.1763768 -36.12599192,-115.1763856 -36.12599292,-115.176395 -36.12599393,-115.1764043 -36.12599491,-115.1764131 -36.12599596,-115.1764225 -36.125997,-115.1764318 -36.12599799,-115.1764407 -36.12599903,-115.17645 -36.12600008,-115.1764594 -36.12600106,-115.1764682 -36.12600211,-115.1764775 -36.12600316,-115.1764869 -36.12600414,-115.1764957 -36.12600519,-115.176505 -36.12600623,-115.1765144 -36.12600722,-115.1765232 -36.12600826,-115.1765325 -36.12600931,-115.1765419 -36.12601029,-115.1765507 -36.12601136,-115.17656 -36.12601247,-115.1765694 -36.12601351,-115.1765782 -36.12601461,-115.1765875 -36.12601572,-115.1765969 -36.12601676,-115.1766057 -36.12601787,-115.176615 -36.12601898,-115.1766243 -36.12602002,-115.1766331 -36.12602112,-115.1766425 -36.12602223,-115.1766518 -36.12602327,-115.1766606 -36.12602438,-115.17667 -36.12602548,-115.1766793 -36.12602653,-115.1766881 -36.12602763,-115.1766974 -36.12602874,-115.1767068 -36.12602978,-115.1767156 -36.12603089,-115.1767249 -36.12603199,-115.1767343 -36.12603303,-115.1767431 -36.12603414,-115.1767524 -36.12603525,-115.1767618 -36.12603629,-115.1767705 -36.12603739,-115.1767799 -36.1260385,-115.1767892 -36.12603954,-115.176798 -36.12604065,-115.1768074 -36.12604176,-115.1768167 -36.1260428,-115.1768255 -36.1260439,-115.1768348 -36.12604501,-115.1768442 -36.12604605,-115.176853 -36.12604716,-115.1768623 -36.12604826,-115.1768717 -36.1260493,-115.1768805 -36.12605041,-115.1768898 -36.12605152,-115.1768992 -36.12605256,-115.1769079 -36.12605367,-115.1769173 -36.12605477,-115.1769266 -36.12605581,-115.1769354 -36.12605692,-115.1769448 -36.12605803,-115.1769541 -36.12605907,-115.1769629 -36.12606017,-115.1769722 -36.12606128,-115.1769816 -36.12606232,-115.1769904 -36.12606343,-115.1769997 -36.12606453,-115.1770091 -36.12606558,-115.1770179 -36.12606668,-115.1770272 -36.12606779,-115.1770366 -36.12606883,-115.1770453 -36.12606994,-115.1770547 -36.12607104,-115.177064 -36.12607208,-115.1770728 -36.12607319,-115.1770822 -36.1260743,-115.1770915 -36.12607534,-115.1771003 -36.12607645,-115.1771096 -36.12607755,-115.177119 -36.12607859,-115.1771278 -36.1260797,-115.1771371 -36.12608081,-115.1771465 -36.12608185,-115.1771553 -36.12608295,-115.1771646 -36.12608382,-115.177174 -36.12608463,-115.1771828 -36.12608549,-115.1771922 -36.12608635,-115.1772016 -36.12608716,-115.1772104 -36.12608802,-115.1772198 -36.12608888,-115.1772292 -36.12608969,-115.177238 -36.12609055,-115.1772474 -36.12609141,-115.1772568 -36.12609222,-115.1772656 -36.12609308,-115.177275 -36.12609394,-115.1772844 -36.12609475,-115.1772932 -36.12609561,-115.1773026 -36.12609647,-115.177312 -36.12609728,-115.1773208 -36.12609814,-115.1773302 -36.126099,-115.1773396 -36.12609981,-115.1773484 -36.12610066,-115.1773578 -36.12610152,-115.1773672 -36.12610233,-115.177376 -36.12610319,-115.1773854 -36.12610405,-115.1773948 -36.12610486,-115.1774036 -36.12610572,-115.177413 -36.12610658,-115.1774224 -36.12610739,-115.1774312 -36.12610825,-115.1774406 -36.12610911,-115.1774499 -36.12610992,-115.1774588 -36.12611078,-115.1774682 -36.12611164,-115.1774775 -36.12611245,-115.1774864 -36.12611331,-115.1774958 -36.12611417,-115.1775051 -36.12611498,-115.177514 -36.12611584,-115.1775234 -36.1261167,-115.1775327 -36.12611751,-115.1775416 -36.12611837,-115.1775509 -36.12611923,-115.1775603 -36.12612003,-115.1775692 -36.12612089,-115.1775785 -36.12612175,-115.1775879 -36.12612256,-115.1775968 -36.12612342,-115.1776061 -36.12612428,-115.1776155 -36.12612509,-115.1776244 -36.12612595,-115.1776337 -36.12612681,-115.1776431 -36.12612762,-115.1776519 -36.12612848,-115.1776613 -36.1261293,-115.1776707 -36.12613002,-115.1776796 -36.12613078,-115.177689 -36.12613154,-115.1776984 -36.12613226,-115.1777072 -36.12613302,-115.1777166 -36.12613378,-115.177726 -36.1261345,-115.1777348 -36.12613526,-115.1777442 -36.12613603,-115.1777536 -36.12613674,-115.1777625 -36.12613751,-115.1777719 -36.12613827,-115.1777813 -36.12613898,-115.1777901 -36.12613975,-115.1777995 -36.12614051,-115.1778089 -36.12614123,-115.1778177 -36.12614199,-115.1778271 -36.12614275,-115.1778365 -36.12614347,-115.1778454 -36.12614423,-115.1778548 -36.12614499,-115.1778642 -36.12614571,-115.177873 -36.12614647,-115.1778824 -36.12614723,-115.1778918 -36.12614795,-115.1779006 -36.12614871,-115.17791 -36.12614947,-115.1779194 -36.12615019,-115.1779283 -36.12615095,-115.1779377 -36.12615172,-115.1779471 -36.12615243,-115.1779559 -36.1261532,-115.1779653 -36.12615396,-115.1779747 -36.12615468,-115.1779835 -36.12615544,-115.1779929 -36.1261562,-115.1780023 -36.12615692,-115.1780112 -36.12615768,-115.1780206 -36.12615844,-115.17803 -36.12615916,-115.1780388 -36.12615992,-115.1780482 -36.12616068,-115.1780576 -36.1261614,-115.1780664 -36.12616216,-115.1780758 -36.12616292,-115.1780852 -36.12616364,-115.1780941 -36.1261644,-115.1781035 -36.12616517,-115.1781129 -36.12616588,-115.1781217 -36.12616664,-115.1781311 -36.12616741,-115.1781405 -36.12616812,-115.1781493 -36.12616889,-115.1781587 -36.12616965,-115.1781681 -36.12617037,-115.178177 -36.12617113,-115.1781864 -36.12617189,-115.1781958 -36.12617261,-115.1782046 -36.12617337,-115.178214 -36.12617413,-115.1782234 -36.12617485,-115.1782322 -36.12617561,-115.1782416 -36.12617637,-115.178251 -36.12617709,-115.1782599 -36.12617785,-115.1782693 -36.12617861,-115.1782787 -36.12617933,-115.1782875 -36.12618009,-115.1782969 -36.12618086,-115.1783063 -36.12618157,-115.1783151 -36.12618233,-115.1783245 -36.1261831,-115.1783339 -36.12618381,-115.1783428 -36.12618458,-115.1783522 -36.12618534,-115.1783616 -36.12618606,-115.1783704 -36.12618682,-115.1783798 -36.12618758,-115.1783892 -36.1261883,-115.178398 -36.12618906,-115.1784074 -36.12618982,-115.1784168 -36.12619054,-115.1784257 -36.1261913,-115.1784351 -36.12619206,-115.1784445 -36.12619278,-115.1784533 -36.12619354,-115.1784627 -36.1261943,-115.1784721 -36.12619502,-115.1784809 -36.12619578,-115.1784903 -36.12619629,-115.1784997 -36.12619668,-115.1785086 -36.12619709,-115.1785181 -36.1261975,-115.1785275 -36.12619789,-115.1785364 -36.1261983,-115.1785458 -36.12619871,-115.1785552 -36.1261991,-115.1785641 -36.12619951,-115.1785735 -36.12619992,-115.1785829 -36.12620031,-115.1785918 -36.12620072,-115.1786012 -36.12620113,-115.1786107 -36.12620152,-115.1786195 -36.12620193,-115.178629 -36.12620234,-115.1786384 -36.12620273,-115.1786473 -36.12620314,-115.1786567 -36.12620355,-115.1786661 -36.12620394,-115.178675 -36.12620435,-115.1786844 -36.12620476,-115.1786939 -36.12620515,-115.1787027 -36.12620556,-115.1787122 -36.12620597,-115.1787216 -36.12620636,-115.1787305 -36.12620677,-115.1787399 -36.12620718,-115.1787493 -36.12620757,-115.1787582 -36.12620798,-115.1787676 -36.12620839,-115.1787771 -36.12620878,-115.1787859 -36.12620919,-115.1787954 -36.1262096,-115.1788048 -36.12620999,-115.1788137 -36.1262104,-115.1788231 -36.12621081,-115.1788325 -36.1262112,-115.1788414 -36.12621161,-115.1788508 -36.12621202,-115.1788603 -36.12621241,-115.1788691 -36.12621282,-115.1788786 -36.12621323,-115.178888 -36.12621362,-115.1788969 -36.12621403,-115.1789063 -36.12621444,-115.1789157 -36.12621482,-115.1789246 -36.12621524,-115.178934 -36.12621565,-115.1789434 -36.12621603,-115.1789523 -36.12621645,-115.1789617 -36.12621686,-115.1789712 -36.12621724,-115.1789801 -36.12621766,-115.1789895 -36.12621807,-115.1789989 -36.12621845,-115.1790078 -36.12621886,-115.1790172 -36.12621928,-115.1790266 -36.12621966,-115.1790355 -36.12622007,-115.1790449 -36.12622049,-115.1790544 -36.12622087,-115.1790632 -36.12622128,-115.1790727 -36.1262217,-115.1790821 -36.12622208,-115.179091 -36.12622249,-115.1791004 -36.1262229,-115.1791098 -36.12622329,-115.1791187 -36.1262237,-115.1791281 -36.12622411,-115.1791376 -36.1262245,-115.1791464 -36.12622491,-115.1791559 -36.12622532,-115.1791653 -36.12622574,-115.1791747 -36.12622612,-115.1791836 -36.12622653,-115.179193 -36.12622694,-115.1792025 -36.12622733,-115.1792113 -36.12622774,-115.1792208 -36.12622815,-115.1792302 -36.12622854,-115.1792391 -36.12622895,-115.1792485 -36.12622936,-115.1792579 -36.12622975,-115.1792668 -36.12623016,-115.1792762 -36.12623057,-115.1792856 -36.12623096,-115.1792945 -36.12623137,-115.179304 -36.12623178,-115.1793134 -36.12623217,-115.1793223 -36.12623258,-115.1793317 -36.12623299,-115.1793411 -36.12623338,-115.17935 -36.12623379,-115.1793594 -36.1262342,-115.1793688 -36.12623459,-115.1793777 -36.126235,-115.1793871 -36.12623541,-115.1793966 -36.1262358,-115.1794054 -36.12623621,-115.1794149 -36.12623662,-115.1794243 -36.12623701,-115.1794332 -36.12623742,-115.1794426 -36.12623783,-115.179452 -36.12623822,-115.1794609 -36.12623863,-115.1794703 -36.12623904,-115.1794798 -36.12623943,-115.1794886 -36.12623984,-115.1794981 -36.12624025,-115.1795075 -36.12624064,-115.1795164 -36.12624105,-115.1795258 -36.12624146,-115.1795352 -36.12624185,-115.1795441 -36.12624226,-115.1795535 -36.12624267,-115.179563 -36.12624306,-115.1795718 -36.12624347,-115.1795813 -36.12624388,-115.1795907 -36.12624427,-115.1795996 -36.12624468,-115.179609 -36.12624509,-115.1796184 -36.12624548,-115.1796273 -36.12624589,-115.1796367 -36.1262463,-115.1796462 -36.12624669,-115.179655 -36.1262471,-115.1796645 -36.12624751,-115.1796739 -36.12624789,-115.1796828 -36.12624831,-115.1796922 -36.12624872,-115.1797016 -36.1262491,-115.1797105 -36.12624952,-115.1797199 -36.12624993,-115.1797293 -36.12625031,-115.1797382 -36.12625072,-115.1797477 -36.12625114,-115.1797571 -36.12625152,-115.179766 -36.12625193,-115.1797754 -36.12625235,-115.1797848 -36.12625273,-115.1797937 -36.12625314,-115.1798031 -36.12625356,-115.1798125 -36.12625394,-115.1798214 -36.12625435,-115.1798308 -36.12625476,-115.1798403 -36.12625515,-115.1798491 -36.12625556,-115.1798586 -36.12625597,-115.179868 -36.12625636,-115.1798769 -36.12625677,-115.1798863 -36.12625718,-115.1798957 -36.12625757,-115.1799046 -36.12625798,-115.179914 -36.12625839,-115.1799235 -36.12625878,-115.1799323 -36.12625919,-115.1799418 -36.1262596,-115.1799512 -36.12625999,-115.1799601 -36.1262604,-115.1799695 -36.12626081,-115.1799789 -36.1262612,-115.1799878 -36.12626161,-115.1799972 -36.12626202,-115.1800067 -36.12626241,-115.1800155 -36.12626282,-115.180025 -36.12626323,-115.1800344 -36.12626362,-115.1800433 -36.12626403,-115.1800527 -36.12626448,-115.1800621 -36.1262649,-115.180071 -36.12626534,-115.1800804 -36.12626579,-115.1800898 -36.12626621,-115.1800987 -36.12626665,-115.1801081 -36.1262671,-115.1801176 -36.12626752,-115.1801264 -36.12626796,-115.1801359 -36.12626841,-115.1801453 -36.12626883,-115.1801542 -36.12626927,-115.1801636 -36.12626972,-115.180173 -36.12627014,-115.1801819 -36.12627058,-115.1801913 -36.12627103,-115.1802007 -36.12627145,-115.1802096 -36.12627189,-115.180219 -36.12627234,-115.1802285 -36.12627276,-115.1802373 -36.1262732,-115.1802468 -36.12627365,-115.1802562 -36.12627407,-115.1802651 -36.12627451,-115.1802745 -36.12627496,-115.1802839 -36.12627538,-115.1802928 -36.12627583,-115.1803022 -36.12627627,-115.1803116 -36.12627669,-115.1803205 -36.12627714,-115.1803299 -36.12627758,-115.1803394 -36.126278,-115.1803482 -36.12627845,-115.1803577 -36.12627889,-115.1803671 -36.12627931,-115.180376 -36.12627976,-115.1803854 -36.1262802,-115.1803948 -36.12628062,-115.1804037 -36.12628107,-115.1804131 -36.12628151,-115.1804225 -36.12628193,-115.1804314 -36.12628238,-115.1804408 -36.12628282,-115.1804503 -36.12628324,-115.1804591 -36.12628369,-115.1804686 -36.12628413,-115.180478 -36.12628455,-115.1804869 -36.126285,-115.1804963 -36.12628544,-115.1805057 -36.12628586,-115.1805146 -36.12628631,-115.180524 -36.12628675,-115.1805334 -36.12628717,-115.1805423 -36.12628762,-115.1805517 -36.12628806,-115.1805612 -36.12628848,-115.18057 -36.12628893,-115.1805795 -36.12628937,-115.1805889 -36.12628979,-115.1805978 -36.12629024,-115.1806072 -36.12629068,-115.1806166 -36.1262911,-115.1806255 -36.12629155,-115.1806349 -36.12629199,-115.1806443 -36.12629241,-115.1806532 -36.12629286,-115.1806626 -36.1262933,-115.1806721 -36.12629372,-115.1806809 -36.12629417,-115.1806904 -36.12629461,-115.1806998 -36.12629503,-115.1807086 -36.12629548,-115.1807181 -36.12629592,-115.1807275 -36.12629634,-115.1807364 -36.12629679,-115.1807458 -36.12629724,-115.1807552 -36.12629765,-115.1807641 -36.1262981,-115.1807735 -36.12629855,-115.1807829 -36.12629896,-115.1807918 -36.12629941,-115.1808012 -36.12629986,-115.1808107 -36.12630027,-115.1808195 -36.12630072,-115.180829 -36.12630117,-115.1808384 -36.12630159,-115.1808473 -36.12630203,-115.1808567 -36.12630248,-115.1808661 -36.1263029,-115.180875 -36.12630334,-115.1808844 -36.12630379,-115.1808938 -36.12630421,-115.1809027 -36.12630465,-115.1809121 -36.1263051,-115.1809216 -36.12630552,-115.1809304 -36.12630596,-115.1809399 -36.12630641,-115.1809493 -36.12630683,-115.1809582 -36.12630727,-115.1809676 -36.12630772,-115.180977 -36.12630734,-115.1809858 -36.12630519,-115.1809948 -36.12630304,-115.1810039 -36.12630101,-115.1810124 -36.12629886,-115.1810215 -36.12629671,-115.1810306 -36.12629468,-115.1810391 -36.12629253,-115.1810481 -36.12629038,-115.1810572 -36.12628835,-115.1810657 -36.1262862,-115.1810748 -36.12628405,-115.1810839 -36.12628202,-115.1810924 -36.12627987,-115.1811014 -36.12627772,-115.1811105 -36.12627569,-115.181119 -36.12627354,-115.1811281 -36.12627139,-115.1811372 -36.1262686,-115.1811452 -36.12626389,-115.1811527 -36.12625917,-115.1811601 -36.12625474,-115.1811671 -36.12625002,-115.1811745 -36.12624531,-115.181182 -36.12624087,-115.181189 -36.12623616,-115.1811964 -36.12623145,-115.1812039 -36.12622701,-115.1812109 -36.1262223,-115.1812183 -36.12621758,-115.1812258 -36.12621315,-115.1812328 -36.12620657,-115.1812376 -36.12619993,-115.1812423 -36.12619368,-115.1812467 -36.12618704,-115.1812514 -36.1261804,-115.1812561 -36.12617415,-115.1812605 -36.12616751,-115.1812653 -36.12616088,-115.18127 -36.12615418,-115.1812729 -36.12614667,-115.1812748 -36.12613917,-115.1812767 -36.1261321,-115.1812784 -36.12612459,-115.1812803 -36.12611708,-115.1812821 -36.12611001,-115.1812839 -36.1261025,-115.1812857 -36.12609499,-115.1812876 -36.12608792,-115.1812894 -36.12608041,-115.1812912 -36.1260729,-115.1812931 -36.12606584,-115.1812948 -36.12605833,-115.1812967 -36.12605078,-115.1812979 -36.12604357,-115.1812975 -36.12603592,-115.1812972 -36.12602827,-115.1812968 -36.12602106,-115.1812965 -36.12601341,-115.1812961 -36.12600575,-115.1812957 -36.12599855,-115.1812954 -36.1259909,-115.181295 -36.12598324,-115.1812947 -36.12597604,-115.1812943 -36.12596839,-115.181294 -36.12596073,-115.1812936 -36.12595353,-115.1812932 -36.12594587,-115.1812929 -36.12593822,-115.1812925 -36.12593102,-115.1812922 -36.12592336,-115.1812918 -36.12591571,-115.1812914 -36.12590851,-115.1812911 -36.12590085,-115.1812907 -36.1258932,-115.1812904 -36.125886,-115.18129 -36.12587834,-115.1812896 -36.12587069,-115.1812893 -36.12586348,-115.1812889 -36.12585583,-115.1812886 -36.12584818,-115.1812882 -36.12584097,-115.1812879 -36.12583332,-115.1812875 -36.12582567,-115.1812871 -36.12581846,-115.1812868 -36.12581081,-115.1812864 -36.12580315,-115.181286 -36.12579595,-115.1812857 -36.1257883,-115.1812853 -36.12578064,-115.181285 -36.12577344,-115.1812846 -36.12576579,-115.1812843 -36.12575813,-115.1812839 -36.12575093,-115.1812835 -36.12574327,-115.1812832 -36.12573562,-115.1812828 -36.12572842,-115.1812825 -36.12572076,-115.1812821 -36.12571311,-115.1812817 -36.12570591,-115.1812814 -36.12569825,-115.181281 -36.1256906,-115.1812807 -36.1256834,-115.1812803 -36.12567574,-115.1812799 -36.12566809,-115.1812796 -36.12566088,-115.1812792 -36.12565327,-115.1812784 -36.12564574,-115.1812767 -36.12563864,-115.1812751 -36.1256311,-115.1812735 -36.12562357,-115.1812718 -36.12561647,-115.1812702 -36.12560893,-115.1812685 -36.1256014,-115.1812669 -36.1255943,-115.1812653 -36.12558676,-115.1812636 -36.12557923,-115.1812619 -36.12557213,-115.1812603 -36.12556459,-115.1812587 -36.12555706,-115.181257 -36.12554996,-115.1812554 -36.12554242,-115.1812537 -36.12553489,-115.1812521 -36.12552779,-115.1812505 -36.12552025,-115.1812488 -36.12551272,-115.1812471 -36.12550562,-115.1812455 -36.12549808,-115.1812439 -36.12549055,-115.1812422 -36.12548345,-115.1812406 -36.12547591,-115.1812389 -36.12546838,-115.1812373 -36.12546128,-115.1812357 -36.12545375,-115.181234 -36.12544621,-115.1812323 -36.12543911,-115.1812307 -36.12543158,-115.1812291 -36.12542404,-115.1812274 -36.12541694,-115.1812258 -36.12540941,-115.1812241 -36.12540187,-115.1812225 -36.12539477,-115.1812209 -36.12538724,-115.1812192 -36.1253797,-115.1812175 -36.1253726,-115.1812159 -36.12536507,-115.1812143 -36.12535753,-115.1812126 -36.12535043,-115.181211 -36.1253429,-115.1812093 -36.12533536,-115.1812077 -36.12532826,-115.1812061 -36.12532073,-115.1812044 -36.12531319,-115.1812027 -36.12530609,-115.1812011 -36.12529856,-115.1811995 -36.12529102,-115.1811978 -36.12528393,-115.1811962 -36.12527639,-115.1811945 -36.12526885,-115.1811929 -36.12526175,-115.1811913 -36.12525422,-115.1811896 -36.12524668,-115.1811879 -36.12523958,-115.1811864 -36.12523204,-115.1811847 -36.1252245,-115.181183 -36.12521741,-115.1811815 -36.12520987,-115.1811798 -36.12520233,-115.1811781 -36.12519523,-115.1811766 -36.12518769,-115.1811749 -36.12518015,-115.1811732 -36.12517306,-115.1811717 -36.12516552,-115.18117 -36.12515798,-115.1811683 -36.12515088,-115.1811668 -36.12514335,-115.1811651 -36.12513581,-115.1811634 -36.12512871,-115.1811619 -36.12512117,-115.1811602 -36.12511363,-115.1811585 -36.12510654,-115.181157 -36.125099,-115.1811553 -36.12509146,-115.1811536 -36.12508436,-115.1811521 -36.12507682,-115.1811504 -36.12506928,-115.1811487 -36.12506219,-115.1811472 -36.12505465,-115.1811455 -36.12504711,-115.1811438 -36.12504001,-115.1811422 -36.12503248,-115.1811406 -36.12502494,-115.1811389 -36.12501784,-115.1811373 -36.1250103,-115.1811357 -36.12500276,-115.181134 -36.12499567,-115.1811324 -36.12498813,-115.1811308 -36.12498059,-115.1811291 -36.12497349,-115.1811275 -36.12496595,-115.1811259 -36.12495841,-115.1811242 -36.12495132,-115.1811226 -36.12494378,-115.181121 -36.12493624,-115.1811193 -36.12492914,-115.1811177 -36.12492161,-115.1811161 -36.12491407,-115.1811144 -36.12490697,-115.1811128 -36.12489943,-115.1811112 -36.12489189,-115.1811095 -36.1248848,-115.1811079 -36.12487726,-115.1811063 -36.12486972,-115.1811046 -36.12486262,-115.181103 -36.12485508,-115.1811014 -36.12484754,-115.1810997 -36.12484045,-115.1810981 -36.12483291,-115.1810964 -36.12482537,-115.1810948 -36.12481827,-115.1810932 -36.12481074,-115.1810915 -36.1248032,-115.1810899 -36.1247961,-115.1810883 -36.12478856,-115.1810866 -36.12478102,-115.181085 -36.12477393,-115.1810834 -36.12476639,-115.1810817 -36.12475885,-115.1810801 -36.12475175,-115.1810785 -36.12474421,-115.1810768 -36.12473667,-115.1810752 -36.12472958,-115.1810736 -36.12472204,-115.1810719 -36.1247145,-115.1810703 -36.1247074,-115.1810687 -36.12469987,-115.181067 -36.12469233,-115.1810654 -36.12468523,-115.1810638 -36.12467769,-115.1810621 -36.12467015,-115.1810605 -36.12466306,-115.1810589 -36.12465552,-115.1810572 -36.12464797,-115.1810556 -36.12464086,-115.1810541 -36.12463331,-115.1810525 -36.12462576,-115.181051 -36.12461865,-115.1810495 -36.12461109,-115.181048 -36.12460354,-115.1810464 -36.12459643,-115.1810449 -36.12458888,-115.1810434 -36.12458132,-115.1810418 -36.12457421,-115.1810403 -36.12456666,-115.1810388 -36.12455911,-115.1810372 -36.124552,-115.1810357 -36.12454444,-115.1810342 -36.12453689,-115.1810326 -36.12452978,-115.1810311 -36.12452222,-115.1810296 -36.12451467,-115.181028 -36.12450756,-115.1810265 -36.12450001,-115.181025 -36.12449245,-115.1810234 -36.12448534,-115.1810219 -36.12447779,-115.1810204 -36.12447023,-115.1810188 -36.12446312,-115.1810174 -36.12445555,-115.1810159 -36.12444799,-115.1810144 -36.12444088,-115.181013 -36.12443332,-115.1810115 -36.12442576,-115.18101 -36.12441864,-115.1810085 -36.12441108,-115.181007 -36.12440352,-115.1810055 -36.1243964,-115.1810041 -36.12438884,-115.1810026 -36.12438128,-115.1810011 -36.12437417,-115.1809996 -36.12436661,-115.1809981 -36.12435905,-115.1809966 -36.12435193,-115.1809952 -36.12434437,-115.1809937 -36.12433681,-115.1809922 -36.12432969,-115.1809907 -36.12432213,-115.1809892 -36.12431457,-115.1809877 -36.12430745,-115.1809863 -36.12429989,-115.1809848 -36.12429233,-115.1809833 -36.12428522,-115.1809818 -36.12427766,-115.1809803 -36.1242701,-115.1809788 -36.12426298,-115.1809774 -36.12425542,-115.1809759 -36.12424786,-115.1809744 -36.12424074,-115.1809729 -36.12423318,-115.1809714 -36.12422562,-115.1809699 -36.12421851,-115.1809685 -36.12421095,-115.180967 -36.12420338,-115.1809655 -36.12419627,-115.1809641 -36.12418871,-115.1809625 -36.12418115,-115.180961 -36.12417403,-115.1809596 -36.12416647,-115.1809581 -36.12415891,-115.1809566 -36.12415179,-115.1809552 -36.12414423,-115.1809536 -36.12413667,-115.1809521 -36.12412956,-115.1809507 -36.124122,-115.1809492 -36.12411436,-115.1809487 -36.12410715,-115.1809483 -36.1240995,-115.1809479 -36.12409185,-115.1809475 -36.12408464,-115.1809472 -36.12407699,-115.1809468 -36.12406934,-115.1809464 -36.12406213,-115.1809461 -36.12405448,-115.1809457 -36.12404683,-115.1809453 -36.12403962,-115.1809449 -36.12403197,-115.1809446 -36.12402432,-115.1809442 -36.12401711,-115.1809438 -36.12400946,-115.1809434 -36.12400181,-115.1809431 -36.1239946,-115.1809427 -36.12398695,-115.1809423 -36.1239793,-115.1809419 -36.12397209,-115.1809416 -36.12396444,-115.1809412 -36.12395679,-115.1809408 -36.12394958,-115.1809405 -36.12394193,-115.1809401 -36.12393428,-115.1809397 -36.12392707,-115.1809393 -36.12391942,-115.180939 -36.12391177,-115.1809386 -36.12390457,-115.1809382 -36.12389691,-115.1809378 -36.12388926,-115.1809374 -36.12388206,-115.1809369 -36.12387441,-115.1809365 -36.12386676,-115.180936 -36.12385956,-115.1809356 -36.12385191,-115.1809351 -36.12384426,-115.1809346 -36.12383706,-115.1809342 -36.12382941,-115.1809338 -36.12382176,-115.1809333 -36.12381456,-115.1809329 -36.12380691,-115.1809324 -36.12379926,-115.1809319 -36.12379206,-115.1809315 -36.12378441,-115.180931 -36.12377676,-115.1809306 -36.12376956,-115.1809302 -36.12376191,-115.1809297 -36.12375426,-115.1809292 -36.12374705,-115.1809288 -36.1237394,-115.1809283 -36.12373175,-115.1809279 -36.12372455,-115.1809274 -36.1237169,-115.180927 -36.12370925,-115.1809265 -36.12370205,-115.1809261 -36.1236944,-115.1809256 -36.12368675,-115.1809252 -36.12367955,-115.1809247 -36.1236719,-115.1809243 -36.12366425,-115.1809238 -36.12365705,-115.1809234 -36.1236494,-115.1809229 -36.12364175,-115.1809225 -36.12363455,-115.180922 -36.1236269,-115.1809216 -36.12361925,-115.1809211 -36.12361205,-115.1809207 -36.1236044,-115.1809202 -36.12359675,-115.1809198 -36.12358955,-115.1809193 -36.1235819,-115.1809189 -36.12357425,-115.1809184 -36.12356705,-115.180918 -36.12355939,-115.1809175 -36.12355174,-115.180917 -36.12354454,-115.1809166 -36.12353689,-115.1809162 -36.12352924,-115.1809157 -36.12352204,-115.1809153 -36.12351439,-115.1809148 -36.12350674,-115.1809143 -36.12349954,-115.1809139 -36.12349189,-115.1809134 -36.12348424,-115.180913 -36.12347704,-115.1809125 -36.12346939,-115.1809121 -36.12346174,-115.1809116 -36.12345454,-115.1809112 -36.12344689,-115.1809107 -36.12343924,-115.1809103 -36.12343204,-115.1809098 -36.12342439,-115.1809094 -36.12341674,-115.1809089 -36.12340954,-115.1809085 -36.12340189,-115.180908 -36.12339424,-115.1809076 -36.12338704,-115.1809071 -36.12337938,-115.1809067 -36.12337173,-115.1809062 -36.12336453,-115.1809058 -36.12335688,-115.1809053 -36.12334923,-115.1809049 -36.12334203,-115.1809044 -36.12333438,-115.180904 -36.12332673,-115.1809035 -36.12331953,-115.1809031 -36.12331188,-115.1809026 -36.12330423,-115.1809022 -36.12329703,-115.1809017 -36.12328938,-115.1809013 -36.12328173,-115.1809008 -36.12327453,-115.1809004 -36.12326688,-115.1808999 -36.12325923,-115.1808994 -36.12325203,-115.180899 -36.12324438,-115.1808985 -36.12323673,-115.1808981 -36.12322953,-115.1808977 -36.12322188,-115.1808972 -36.12321423,-115.1808967 -36.12320703,-115.1808963 -36.12319937,-115.1808958 -36.12319172,-115.1808954 -36.12318452,-115.1808949 -36.12317687,-115.1808945 -36.12316922,-115.180894 -36.12316202,-115.1808936 -36.12315437,-115.1808931 -36.12314672,-115.1808927 -36.12313952,-115.1808922 -36.12313187,-115.1808918 -36.12312422,-115.1808913 -36.12311702,-115.1808909 -36.12310937,-115.1808904 -36.12310172,-115.18089 -36.12309452,-115.1808895 -36.12308687,-115.1808891 -36.12307922,-115.1808886 -36.12307202,-115.1808882 -36.12306437,-115.1808877 -36.12305672,-115.1808873 -36.12304952,-115.1808868 -36.12304187,-115.1808864 -36.12303422,-115.1808859 -36.12302702,-115.1808855 -36.12301936,-115.180885 -36.12301171,-115.1808845 -36.12300451,-115.1808841 -36.12299686,-115.1808837 -36.12298921,-115.1808832 -36.12298201,-115.1808828 -36.12297436,-115.1808823 -36.12296671,-115.1808818 -36.12295951,-115.1808814 -36.12295186,-115.1808809 -36.12294421,-115.1808805 -36.12293701,-115.1808801 -36.12292936,-115.1808796 -36.12292171,-115.1808791 -36.12291451,-115.1808787 -36.12290686,-115.1808782 -36.12289921,-115.1808778 -36.12289201,-115.1808773 -36.12288436,-115.1808769 -36.12287671,-115.1808764 -36.12286951,-115.180876 -36.12286186,-115.1808755 -36.12285421,-115.1808751 -36.12284701,-115.1808746 -36.12283936,-115.1808742 -36.1228317,-115.1808737 -36.1228245,-115.1808733 -36.12281685,-115.1808728 -36.1228092,-115.1808724 -36.122802,-115.1808719 -36.12279435,-115.1808715 -36.1227867,-115.180871 -36.1227795,-115.1808706 -36.12277185,-115.1808701 -36.1227642,-115.1808697 -36.122757,-115.1808692 -36.12274935,-115.1808688 -36.1227417,-115.1808683 -36.1227345,-115.1808679 -36.12272685,-115.1808674 -36.1227192,-115.1808669 -36.122712,-115.1808665 -36.12270435,-115.1808661 -36.1226967,-115.1808656 -36.1226895,-115.1808652 -36.12268185,-115.1808647 -36.1226742,-115.1808642 -36.122667,-115.1808638 -36.12265935,-115.1808633 -36.12265169,-115.1808629 -36.12264449,-115.1808625 -36.12263684,-115.180862 -36.12262918,-115.180862 -36.12262198,-115.1808619 -36.12261432,-115.1808619 -36.12260666,-115.1808618 -36.12259945,-115.1808618 -36.12259179,-115.1808618 -36.12258413,-115.1808617 -36.12257692,-115.1808617 -36.12256926,-115.1808616 -36.1225616,-115.1808616 -36.12255439,-115.1808616 -36.12254673,-115.1808615 -36.12253907,-115.1808615 -36.12253186,-115.1808614 -36.1225242,-115.1808614 -36.12251655,-115.1808614 -36.12250934,-115.1808613 -36.12250168,-115.1808613 -36.12249402,-115.1808612 -36.12248681,-115.1808612 -36.12247915,-115.1808611 -36.12247149,-115.1808611 -36.12246428,-115.1808611 -36.12245662,-115.180861 -36.12244896,-115.180861 -36.12244175,-115.1808609 -36.12243409,-115.1808609 -36.12242643,-115.1808609 -36.12241923,-115.1808608 -36.12241157,-115.1808608 -36.12240391,-115.1808607 -36.1223967,-115.1808607 -36.12238904,-115.1808607 -36.12238138,-115.1808606 -36.12237417,-115.1808606 -36.12236651,-115.1808605 -36.12235885,-115.1808605 -36.12235164,-115.1808605 -36.12234398,-115.1808604 -36.12233632,-115.1808604 -36.12232911,-115.1808603 -36.12232145,-115.1808603 -36.12231379,-115.1808603 -36.12230659,-115.1808602 -36.12229893,-115.1808602 -36.12229127,-115.1808601 -36.12228406,-115.1808601 -36.1222764,-115.1808601 -36.12226874,-115.18086 -36.12226153,-115.18086 -36.12225387,-115.1808599 -36.12224621,-115.1808599 -36.122239,-115.1808599 -36.12223134,-115.1808598 -36.12222368,-115.1808598 -36.12221647,-115.1808597 -36.12220882,-115.1808597 -36.12220116,-115.1808597 -36.12219395,-115.1808596 -36.12218629,-115.1808596 -36.12217863,-115.1808595 -36.12217142,-115.1808595 -36.12216376,-115.1808594 -36.1221561,-115.1808594 -36.12214889,-115.1808594 -36.12214123,-115.1808593 -36.12213357,-115.1808593 -36.12212636,-115.1808592 -36.1221187,-115.1808592 -36.12211104,-115.1808592 -36.12210384,-115.1808591 -36.12209618,-115.1808591 -36.12208852,-115.180859 -36.12208131,-115.180859 -36.12207365,-115.180859 -36.12206599,-115.1808589 -36.12205878,-115.1808589 -36.12205112,-115.1808588 -36.12204346,-115.1808588 -36.12203625,-115.1808588 -36.12202859,-115.1808587 -36.12202093,-115.1808587 -36.12201372,-115.1808586 -36.12200606,-115.1808586 -36.12199841,-115.1808586 -36.1219912,-115.1808585 -36.12198354,-115.1808585 -36.12197588,-115.1808584 -36.12196867,-115.1808584 -36.12196101,-115.1808584 -36.12195335,-115.1808583 -36.12194614,-115.1808583 -36.12193848,-115.1808582 -36.12193082,-115.1808582 -36.12192361,-115.1808582 -36.12191595,-115.1808581 -36.12190829,-115.1808581 -36.12190109,-115.180858 -36.12189343,-115.180858 -36.12188577,-115.180858 -36.12187856,-115.180858 -36.1218709,-115.180858 -36.12186324,-115.180858 -36.12185603,-115.180858 -36.12184837,-115.1808579 -36.12184071,-115.1808579 -36.1218335,-115.1808579 -36.12182584,-115.1808579 -36.12181818,-115.1808579 -36.12181097,-115.1808579 -36.12180331,-115.1808579 -36.12179565,-115.1808579 -36.12178844,-115.1808579 -36.12178079,-115.1808579 -36.12177313,-115.1808579 -36.12176592,-115.1808579 -36.12175826,-115.1808578 -36.1217506,-115.1808578 -36.12174339,-115.1808578 -36.12173573,-115.1808578 -36.12172807,-115.1808578 -36.12172086,-115.1808578 -36.1217132,-115.1808578 -36.12170554,-115.1808578 -36.12169833,-115.1808578 -36.12169067,-115.1808578 -36.12168301,-115.1808578 -36.1216758,-115.1808577 -36.12166815,-115.1808577 -36.12166049,-115.1808577 -36.12165328,-115.1808577 -36.12164562,-115.1808577 -36.12163796,-115.1808577 -36.12163075,-115.1808577 -36.12162309,-115.1808577 -36.12161543,-115.1808577 -36.12160822,-115.1808577 -36.12160056,-115.1808577 -36.1215929,-115.1808576 -36.12158569,-115.1808576 -36.12157803,-115.1808576 -36.12157037,-115.1808576 -36.12156316,-115.1808576 -36.12155551,-115.1808576 -36.12154785,-115.1808576 -36.12154064,-115.1808576 -36.12153298,-115.1808576 -36.12152532,-115.1808576 -36.12151811,-115.1808576 -36.12151045,-115.1808576 -36.12150279,-115.1808575 -36.12149558,-115.1808575 -36.12148792,-115.1808575 -36.12148026,-115.1808575 -36.12147305,-115.1808575 -36.12146539,-115.1808575 -36.12145773,-115.1808575 -36.12145052,-115.1808575 -36.12144286,-115.1808575 -36.12143521,-115.1808575 -36.121428,-115.1808575 -36.12142034,-115.1808574 -36.12141268,-115.1808574 -36.12140547,-115.1808574 -36.12139781,-115.1808574 -36.12139015,-115.1808574 -36.12138294,-115.1808574 -36.12137528,-115.1808574 -36.12136762,-115.1808574 -36.12136041,-115.1808574 -36.12135275,-115.1808574 -36.12134509,-115.1808574 -36.12133788,-115.1808574 -36.12133022,-115.1808573 -36.12132257,-115.1808573 -36.12131536,-115.1808573 -36.1213077,-115.1808573 -36.12130004,-115.1808573 -36.12129283,-115.1808573 -36.12128517,-115.1808573 -36.12127751,-115.1808573 -36.1212703,-115.1808573 -36.12126264,-115.1808573 -36.12125498,-115.1808573 -36.12124777,-115.1808572 -36.12124011,-115.1808572 -36.12123245,-115.1808572 -36.12122524,-115.1808572 -36.12121758,-115.1808572 -36.12120993,-115.1808572 -36.12120272,-115.1808572 -36.12119506,-115.1808572 -36.1211874,-115.1808572 -36.12118019,-115.1808572 -36.12117253,-115.1808572 -36.12116487,-115.1808572 -36.12115766,-115.1808571 -36.12115,-115.1808571 -36.12114234,-115.1808571 -36.12113513,-115.1808571 -36.12112747,-115.1808571 -36.12111981,-115.1808571 -36.1211126,-115.1808571 -36.12110494,-115.1808571 -36.12109728,-115.1808571 -36.12109008,-115.1808571 -36.12108242,-115.1808571 -36.12107476,-115.180857 -36.12106755,-115.180857 -36.12105989,-115.180857 -36.12105223,-115.180857 -36.12104502,-115.180857 -36.12103736,-115.180857 -36.1210297,-115.180857 -36.12102249,-115.180857 -36.12101483,-115.180857 -36.12100717,-115.180857 -36.12099996,-115.180857 -36.1209923,-115.180857 -36.12098464,-115.180857 -36.12097744,-115.180857 -36.12096978,-115.180857 -36.12096212,-115.180857 -36.12095491,-115.180857 -36.12094725,-115.180857 -36.12093964,-115.180856 -36.12093249,-115.1808548 -36.1209249,-115.1808536 -36.1209173,-115.1808524 -36.12091016,-115.1808512 -36.12090256,-115.18085 -36.12089497,-115.1808488 -36.12088782,-115.1808476 -36.12088022,-115.1808464 -36.12087263,-115.1808452 -36.12086548,-115.180844 -36.12085788,-115.1808428 -36.12085029,-115.1808416 -36.12084314,-115.1808404 -36.12083555,-115.1808392 -36.12082795,-115.180838 -36.1208208,-115.1808369 -36.12081321,-115.1808356 -36.12080561,-115.1808344 -36.12079846,-115.1808333 -36.12079087,-115.180832 -36.12078327,-115.1808308 -36.12077612,-115.1808297 -36.12076853,-115.1808284 -36.12076093,-115.1808272 -36.12075379,-115.1808261 -36.12074619,-115.1808248 -36.1207386,-115.1808236 -36.12073145,-115.1808225 -36.12072385,-115.1808213 -36.12071626,-115.18082 -36.12070911,-115.1808189 -36.12070151,-115.1808177 -36.12069392,-115.1808164 -36.12068677,-115.1808153 -36.12067918,-115.1808141 -36.12067158,-115.1808128 -36.12066443,-115.1808117 -36.12065684,-115.1808105 -36.12064924,-115.1808092 -36.12064209,-115.1808081 -36.1206345,-115.1808069 -36.1206269,-115.1808057 -36.12061976,-115.1808045 -36.12061216,-115.1808033 -36.12060457,-115.1808021 -36.12059741,-115.180801 -36.12058976,-115.1808006 -36.12058211,-115.1808002 -36.1205749,-115.1807999 -36.12056725,-115.1807995 -36.1205596,-115.1807991 -36.12055239,-115.1807988 -36.12054474,-115.1807984 -36.12053708,-115.180798 -36.12052988,-115.1807977 -36.12052223,-115.1807973 -36.12051457,-115.1807969 -36.12050737,-115.1807966 -36.12049972,-115.1807962 -36.12049206,-115.1807958 -36.12048486,-115.1807955 -36.12047721,-115.1807951 -36.12046955,-115.1807947 -36.12046235,-115.1807944 -36.1204547,-115.180794 -36.12044704,-115.1807936 -36.12043984,-115.1807933 -36.12043219,-115.1807929 -36.12042453,-115.1807925 -36.12041733,-115.1807922 -36.12040968,-115.1807918 -36.12040202,-115.1807914 -36.12039482,-115.1807911 -36.12038717,-115.1807907 -36.12037951,-115.1807903 -36.12037231,-115.18079 -36.12036466,-115.1807896 -36.120357,-115.1807892 -36.1203498,-115.1807889 -36.12034214,-115.1807885 -36.12033449,-115.1807881 -36.12032729,-115.1807878 -36.12031963,-115.1807874 -36.12031198,-115.180787 -36.12030478,-115.1807867 -36.12029712,-115.1807863 -36.12028947,-115.1807859 -36.12028227,-115.1807856 -36.12027461,-115.1807852 -36.12026696,-115.1807848 -36.12025976,-115.1807845 -36.1202521,-115.1807841 -36.12024445,-115.1807837 -36.12023725,-115.1807834 -36.12022959,-115.180783 -36.12022194,-115.1807826 -36.12021474,-115.1807823 -36.12020708,-115.1807819 -36.12019943,-115.1807815 -36.12019223,-115.1807812 -36.12018457,-115.1807808 -36.12017692,-115.1807804 -36.12016972,-115.1807801 -36.12016206,-115.1807797 -36.12015441,-115.1807793 -36.12014721,-115.180779 -36.12013955,-115.1807786 -36.1201319,-115.1807782 -36.12012469,-115.1807779 -36.12011704,-115.1807775 -36.12010939,-115.1807771 -36.12010218,-115.1807768 -36.12009453,-115.1807764 -36.12008688,-115.180776 -36.12007967,-115.1807757 -36.12007202,-115.1807753 -36.12006437,-115.1807749 -36.12005716,-115.1807746 -36.12004951,-115.1807742 -36.12004186,-115.1807738 -36.12003465,-115.1807735 -36.120027,-115.1807731 -36.12001935,-115.1807727 -36.12001214,-115.1807724 -36.12000449,-115.180772 -36.11999684,-115.1807716 -36.11998963,-115.1807713 -36.11998198,-115.1807709 -36.11997433,-115.1807705 -36.11996712,-115.1807702 -36.11995947,-115.1807698 -36.11995181,-115.1807694 -36.11994461,-115.1807691 -36.11993695,-115.180769 -36.11992929,-115.180769 -36.11992208,-115.180769 -36.11991443,-115.180769 -36.11990677,-115.180769 -36.11989956,-115.180769 -36.1198919,-115.180769 -36.11988424,-115.180769 -36.11987703,-115.180769 -36.11986937,-115.180769 -36.11986171,-115.180769 -36.1198545,-115.180769 -36.11984684,-115.180769 -36.11983918,-115.1807691 -36.11983197,-115.1807691 -36.11982431,-115.1807691 -36.11981665,-115.1807692 -36.11980945,-115.1807692 -36.11980179,-115.1807693 -36.11979413,-115.1807693 -36.11978692,-115.1807693 -36.11977926,-115.1807694 -36.1197716,-115.1807694 -36.11976439,-115.1807695 -36.11975673,-115.1807695 -36.11974907,-115.1807696 -36.11974186,-115.1807696 -36.1197342,-115.1807696 -36.11972654,-115.1807697 -36.11971933,-115.1807697 -36.11971167,-115.1807698 -36.11970401,-115.1807698 -36.11969681,-115.1807699 -36.11968915,-115.1807699 -36.11968149,-115.1807699 -36.11967428,-115.18077 -36.11966662,-115.18077 -36.11965896,-115.18077 -36.11965175,-115.18077 -36.11964409,-115.18077 -36.11963643,-115.18077 -36.11962922,-115.18077 -36.11962156,-115.18077 -36.1196139,-115.18077 -36.11960669,-115.18077 -36.11959903,-115.18077 -36.11959137,-115.18077 -36.11958417,-115.18077 -36.11957651,-115.18077 -36.11956885,-115.18077 -36.11956164,-115.18077 -36.11955398,-115.18077 -36.11954632,-115.18077 -36.11953911,-115.18077 -36.11953145,-115.18077 -36.11952379,-115.18077 -36.11951658,-115.18077 -36.11950892,-115.18077 -36.11950126,-115.18077 -36.11949405,-115.18077 -36.11948639,-115.18077 -36.11947873,-115.18077 -36.11947153,-115.18077 -36.11946387,-115.18077 -36.11945621,-115.18077 -36.119449,-115.18077 -36.11944134,-115.1807699 -36.11943368,-115.1807699 -36.11942557,-115.1807699 -36.11941836,-115.1807699 -36.1194107,-115.1807699 -36.11940349,-115.1807699 -36.11939583,-115.1807699 -36.11938817,-115.1807699 -36.11938096,-115.1807699 -36.1193733,-115.1807699 -36.11936564,-115.1807699 -36.11935843,-115.1807699 -36.11935078,-115.1807699 -36.11934312,-115.1807699 -36.11933591,-115.1807699 -36.11932825,-115.1807699 -36.11932059,-115.1807699 -36.11931338,-115.1807699 -36.11930572,-115.1807699 -36.11929806,-115.1807699 -36.11929085,-115.1807699 -36.11928319,-115.1807699 -36.11927553,-115.1807699 -36.11926832,-115.1807699 -36.11926066,-115.1807699 -36.119253,-115.1807699 -36.11924579,-115.1807699 -36.11923813,-115.1807699 -36.11923048,-115.1807699 -36.11922327,-115.1807699 -36.11921561,-115.1807699 -36.11920795,-115.1807699 -36.11920074,-115.1807699 -36.11919308,-115.1807699 -36.11918542,-115.1807699 -36.11917821,-115.1807699 -36.11917055,-115.1807699 -36.11916289,-115.1807699 -36.11915568,-115.1807699 -36.11914802,-115.1807699 -36.11914036,-115.1807699 -36.11913315,-115.1807699 -36.11912549,-115.1807699 -36.11911784,-115.1807699 -36.11911063,-115.1807699 -36.11910297,-115.1807699 -36.11909531,-115.1807699 -36.1190881,-115.1807699 -36.11908044,-115.1807699 -36.11907278,-115.1807699 -36.11906557,-115.1807699 -36.11905791,-115.1807699 -36.11905025,-115.1807699 -36.11904304,-115.1807699 -36.11903538,-115.1807699 -36.11902772,-115.1807699 -36.11902051,-115.1807699 -36.11901285,-115.1807699 -36.11900519,-115.1807699 -36.11899799,-115.1807699 -36.11899033,-115.1807698 -36.11898267,-115.1807698 -36.11897546,-115.1807698 -36.1189678,-115.1807698 -36.11896014,-115.1807698 -36.11895293,-115.1807698 -36.11894527,-115.1807698 -36.11893761,-115.1807698 -36.1189304,-115.1807698 -36.11892274,-115.1807698 -36.11891508,-115.1807698 -36.11890787,-115.1807698 -36.11890021,-115.1807698 -36.11889255,-115.1807698 -36.11888535,-115.1807698 -36.11887769,-115.1807698 -36.11887003,-115.1807698 -36.11886282,-115.1807698 -36.11885516,-115.1807698 -36.1188475,-115.1807698 -36.11884029,-115.1807698 -36.11883263,-115.1807698 -36.11882497,-115.1807698 -36.11881776,-115.1807698 -36.1188101,-115.1807698 -36.11880244,-115.1807698 -36.11879523,-115.1807698 -36.11878757,-115.1807698 -36.11877991,-115.1807698 -36.11877271,-115.1807698 -36.11876505,-115.1807698 -36.11875739,-115.1807698 -36.11875018,-115.1807698 -36.11874252,-115.1807698 -36.11873486,-115.1807698 -36.11872765,-115.1807698 -36.11871999,-115.1807698 -36.11871233,-115.1807698 -36.11870512,-115.1807698 -36.11869746,-115.1807698 -36.1186898,-115.1807698 -36.11868259,-115.1807698 -36.11867493,-115.1807698 -36.11866727,-115.1807698 -36.11866006,-115.1807698 -36.11865241,-115.1807698 -36.11864475,-115.1807698 -36.11863754,-115.1807698 -36.11862988,-115.1807698 -36.11862222,-115.1807698 -36.11861501,-115.1807698 -36.11860735,-115.1807698 -36.11859969,-115.1807698 -36.11859248,-115.1807698 -36.11858482,-115.1807698 -36.11857716,-115.1807698 -36.11856995,-115.1807698 -36.11856229,-115.1807698 -36.11855463,-115.1807698 -36.11854742,-115.1807697 -36.11853976,-115.1807697 -36.11853211,-115.1807697 -36.1185249,-115.1807697 -36.11851724,-115.1807697 -36.11850958,-115.1807697 -36.11850237,-115.1807697 -36.11849471,-115.1807697 -36.11848705,-115.1807697 -36.11847984,-115.1807697 -36.11847218,-115.1807697 -36.11846452,-115.1807697 -36.11845731,-115.1807697 -36.11844965,-115.1807697 -36.11844199,-115.1807697 -36.11843478,-115.1807697 -36.11842712,-115.1807697 -36.11841947,-115.1807697 -36.11841226,-115.1807697 -36.1184046,-115.1807697 -36.11839694,-115.1807697 -36.11838973,-115.1807697 -36.11838207,-115.1807697 -36.11837441,-115.1807697 -36.1183672,-115.1807697 -36.11835954,-115.1807697 -36.11835188,-115.1807697 -36.11834467,-115.1807697 -36.11833701,-115.1807697 -36.11832935,-115.1807697 -36.11832214,-115.1807697 -36.11831448,-115.1807697 -36.11830682,-115.1807697 -36.11829962,-115.1807697 -36.11829196,-115.1807697 -36.1182843,-115.1807697 -36.11827709,-115.1807697 -36.11826943,-115.1807697 -36.11826177,-115.1807697 -36.11825456,-115.1807697 -36.1182469,-115.1807697 -36.11823924,-115.1807697 -36.11823203,-115.1807697 -36.11822437,-115.1807697 -36.11821671,-115.1807697 -36.1182095,-115.1807697 -36.11820184,-115.1807697 -36.11819418,-115.1807697 -36.11818698,-115.1807697 -36.11817932,-115.1807697 -36.11817166,-115.1807697 -36.11816445,-115.1807697 -36.11815679,-115.1807697 -36.11814913,-115.1807697 -36.11814192,-115.1807697 -36.11813426,-115.1807697 -36.1181266,-115.1807697 -36.11811939,-115.1807697 -36.11811173,-115.1807697 -36.11810407,-115.1807697 -36.11809686,-115.1807696 -36.1180892,-115.1807696 -36.11808154,-115.1807696 -36.11807434,-115.1807696 -36.11806668,-115.1807696 -36.11805902,-115.1807696 -36.11805181,-115.1807696 -36.11804415,-115.1807696 -36.11803649,-115.1807696 -36.11802928,-115.1807696 -36.11802162,-115.1807696 -36.11801396,-115.1807696 -36.11800675,-115.1807696 -36.11799909,-115.1807696 -36.11799143,-115.1807696 -36.11798422,-115.1807696 -36.11797656,-115.1807696 -36.1179689,-115.1807696 -36.11796169,-115.1807696 -36.11795404,-115.1807696 -36.11794638,-115.1807696 -36.11793917,-115.1807696 -36.11793151,-115.1807696 -36.11792385,-115.1807696 -36.11791664,-115.1807696 -36.11790898,-115.1807696 -36.11790132,-115.1807696 -36.11789411,-115.1807696 -36.11788645,-115.1807696 -36.11787879,-115.1807696 -36.11787158,-115.1807696 -36.11786392,-115.1807696 -36.11785626,-115.1807696 -36.11784905,-115.1807696 -36.11784139,-115.1807696 -36.11783374,-115.1807696 -36.11782653,-115.1807696 -36.11781887,-115.1807696 -36.11781121,-115.1807696 -36.117804,-115.1807696 -36.11779634,-115.1807696 -36.11778868,-115.1807696 -36.11778147,-115.1807696 -36.11777381,-115.1807696 -36.11776615,-115.1807696 -36.11775894,-115.1807696 -36.11775128,-115.1807696 -36.11774362,-115.1807696 -36.11773641,-115.1807696 -36.11772875,-115.1807696 -36.11772109,-115.1807696 -36.11771389,-115.1807696 -36.11770623,-115.1807696 -36.11769857,-115.1807696 -36.11769136,-115.1807696 -36.1176837,-115.1807696 -36.11767604,-115.1807696 -36.11766883,-115.1807696 -36.11766117,-115.1807696 -36.11765351,-115.1807695 -36.1176463,-115.1807695 -36.11763864,-115.1807695 -36.11763098,-115.1807695 -36.11762377,-115.1807695 -36.11761611,-115.1807695 -36.11760845,-115.1807695 -36.11760125,-115.1807695 -36.11759359,-115.1807695 -36.11758593,-115.1807695 -36.11757872,-115.1807695 -36.11757106,-115.1807695 -36.1175634,-115.1807695 -36.11755619,-115.1807695 -36.11754853,-115.1807695 -36.11754087,-115.1807695 -36.11753366,-115.1807695 -36.117526,-115.1807695 -36.11751834,-115.1807695 -36.11751113,-115.1807695 -36.11750347,-115.1807695 -36.11749581,-115.1807695 -36.11748861,-115.1807695 -36.11748095,-115.1807695 -36.11747329,-115.1807695 -36.11746608,-115.1807695 -36.11745842,-115.1807695 -36.11745076,-115.1807695 -36.11744355,-115.1807695 -36.11743589,-115.1807695 -36.11742823,-115.1807695 -36.11742102,-115.1807695 -36.11741336,-115.1807695 -36.1174057,-115.1807695 -36.11739849,-115.1807695 -36.11739083,-115.1807695 -36.11738317,-115.1807695 -36.11737596,-115.1807695 -36.11736831,-115.1807695 -36.11736065,-115.1807695 -36.11735344,-115.1807695 -36.11734578,-115.1807695 -36.11733812,-115.1807695 -36.11733091,-115.1807695 -36.11732325,-115.1807695 -36.11731559,-115.1807695 -36.11730838,-115.1807695 -36.11730072,-115.1807695 -36.11729306,-115.1807695 -36.11728585,-115.1807695 -36.11727819,-115.1807695 -36.11727053,-115.1807695 -36.11726332,-115.1807695 -36.11725566,-115.1807695 -36.11724801,-115.1807695 -36.1172408,-115.1807695 -36.11723314,-115.1807695 -36.11722548,-115.1807695 -36.11721827,-115.1807695 -36.11721061,-115.1807695 -36.11720295,-115.1807694 -36.11719574,-115.1807694 -36.11718808,-115.1807694 -36.11718042,-115.1807694 -36.11717321,-115.1807694 -36.11716555,-115.1807694 -36.11715789,-115.1807694 -36.11715068,-115.1807694 -36.11714302,-115.1807694 -36.11713537,-115.1807694 -36.11712816,-115.1807694 -36.1171205,-115.1807694 -36.11711284,-115.1807694 -36.11710563,-115.1807694 -36.11709797,-115.1807694 -36.11709031,-115.1807694 -36.1170831,-115.1807694 -36.11707544,-115.1807694 -36.11706778,-115.1807694 -36.11706057,-115.1807694 -36.11705291,-115.1807694 -36.11704525,-115.1807694 -36.11703804,-115.1807694 -36.11703038,-115.1807694 -36.11702272,-115.1807694 -36.11701552,-115.1807694 -36.11700786,-115.1807694 -36.1170002,-115.1807694 -36.11699299,-115.1807694 -36.11698533,-115.1807694 -36.11697767,-115.1807694 -36.11697046,-115.1807694 -36.1169628,-115.1807694 -36.11695514,-115.1807694 -36.11694793,-115.1807694 -36.11694027,-115.1807694 -36.11693261,-115.1807694 -36.1169254,-115.1807694 -36.11691774,-115.1807694 -36.11691008,-115.1807694 -36.11690288,-115.1807694 -36.11689522,-115.1807694 -36.11688756,-115.1807694 -36.11688035,-115.1807694 -36.11687269,-115.1807694 -36.11686503,-115.1807694 -36.11685782,-115.1807694 -36.11685016,-115.1807694 -36.1168425,-115.1807694 -36.11683529,-115.1807694 -36.11682763,-115.1807694 -36.11681997,-115.1807694 -36.11681276,-115.1807694 -36.1168051,-115.1807694 -36.11679744,-115.1807694 -36.11679023,-115.1807694 -36.11678258,-115.1807694 -36.11677492,-115.1807694 -36.11676771,-115.1807694 -36.11676005,-115.1807694 -36.11675239,-115.1807693 -36.11674518,-115.1807693 -36.11673752,-115.1807693 -36.11672986,-115.1807693 -36.11672265,-115.1807693 -36.11671499,-115.1807693 -36.11670733,-115.1807693 -36.11670012,-115.1807693 -36.11669246,-115.1807693 -36.1166848,-115.1807693 -36.11667759,-115.1807693 -36.11666993,-115.1807693 -36.11666228,-115.1807693 -36.11665507,-115.1807693 -36.11664741,-115.1807693 -36.11663975,-115.1807693 -36.11663254,-115.1807693 -36.11662488,-115.1807693 -36.11661722,-115.1807693 -36.11661001,-115.1807693 -36.11660235,-115.1807693 -36.11659469,-115.1807693 -36.11658748,-115.1807693 -36.11657982,-115.1807693 -36.11657216,-115.1807693 -36.11656495,-115.1807693 -36.11655729,-115.1807693 -36.11654964,-115.1807693 -36.11654243,-115.1807693 -36.11653477,-115.1807693 -36.11652711,-115.1807693 -36.1165199,-115.1807693 -36.11651224,-115.1807693 -36.11650458,-115.1807693 -36.11649737,-115.1807693 -36.11648971,-115.1807693 -36.11648205,-115.1807693 -36.11647484,-115.1807693 -36.11646718,-115.1807693 -36.11645952,-115.1807693 -36.11645231,-115.1807693 -36.11644465,-115.1807693 -36.11643699,-115.1807693 -36.11642979,-115.1807693 -36.11642213,-115.1807693 -36.11641447,-115.1807693 -36.11640726,-115.1807693 -36.1163996,-115.1807693 -36.11639194,-115.1807693 -36.11638473,-115.1807693 -36.11637707,-115.1807693 -36.11636941,-115.1807693 -36.1163622,-115.1807693 -36.11635454,-115.1807693 -36.11634688,-115.1807693 -36.11633967,-115.1807693 -36.11633201,-115.1807693 -36.11632435,-115.1807693 -36.11631715,-115.1807693 -36.11630949,-115.1807693 -36.11630183,-115.1807692 -36.11629462,-115.1807692 -36.11628696,-115.1807692 -36.1162793,-115.1807692 -36.11627209,-115.1807692 -36.11626443,-115.1807692 -36.11625677,-115.1807692 -36.11624956,-115.1807692 -36.1162419,-115.1807692 -36.11623424,-115.1807692 -36.11622703,-115.1807692 -36.11621937,-115.1807692 -36.11621171,-115.1807692 -36.1162045,-115.1807692 -36.11619685,-115.1807692 -36.11618919,-115.1807692 -36.11618198,-115.1807692 -36.11617432,-115.1807692 -36.11616666,-115.1807692 -36.11615945,-115.1807692 -36.11615179,-115.1807692 -36.11614413,-115.1807692 -36.11613692,-115.1807692 -36.11612926,-115.1807692 -36.1161216,-115.1807692 -36.11611439,-115.1807692 -36.11610673,-115.1807692 -36.11609907,-115.1807692 -36.11609186,-115.1807692 -36.1160842,-115.1807692 -36.11607655,-115.1807692 -36.11606934,-115.1807692 -36.11606168,-115.1807692 -36.11605402,-115.1807692 -36.11604681,-115.1807692 -36.11603915,-115.1807692 -36.11603149,-115.1807692 -36.11602428,-115.1807692 -36.11601662,-115.1807692 -36.11600896,-115.1807692 -36.11600175,-115.1807692 -36.11599409,-115.1807692 -36.11598643,-115.1807692 -36.11597922,-115.1807692 -36.11597156,-115.1807692 -36.1159639,-115.1807692 -36.1159567,-115.1807692 -36.11594904,-115.1807692 -36.11594138,-115.1807692 -36.11593417,-115.1807692 -36.11592651,-115.1807692 -36.11591885,-115.1807692 -36.11591164,-115.1807692 -36.11590398,-115.1807692 -36.11589632,-115.1807692 -36.11588911,-115.1807692 -36.11588145,-115.1807692 -36.11587379,-115.1807692 -36.11586658,-115.1807692 -36.11585892,-115.1807691 -36.11585126,-115.1807691 -36.11584406,-115.1807691 -36.1158364,-115.1807691 -36.11582874,-115.1807691 -36.11582153,-115.1807691 -36.11581387,-115.1807691 -36.11580621,-115.1807691 -36.115799,-115.1807691 -36.11579134,-115.1807691 -36.11578368,-115.1807691 -36.11577647,-115.1807691 -36.11576881,-115.1807691 -36.11576115,-115.1807691 -36.11575394,-115.1807691 -36.11574628,-115.1807691 -36.11573862,-115.1807691 -36.11573142,-115.1807691 -36.11572376,-115.1807691 -36.1157161,-115.1807691 -36.11570889,-115.1807691 -36.11570123,-115.1807691 -36.11569357,-115.1807691 -36.11568636,-115.1807691 -36.1156787,-115.1807691 -36.11567104,-115.1807691 -36.11566383,-115.1807691 -36.11565617,-115.1807691 -36.11564851,-115.1807691 -36.1156413,-115.1807691 -36.11563364,-115.1807691 -36.11562598,-115.1807691 -36.11561877,-115.1807691 -36.11561112,-115.1807691 -36.11560346,-115.1807691 -36.11559625,-115.1807691 -36.11558859,-115.1807691 -36.11558093,-115.1807691 -36.11557372,-115.1807691 -36.11556606,-115.1807691 -36.1155584,-115.1807691 -36.11555119,-115.1807691 -36.11554353,-115.1807691 -36.11553587,-115.1807691 -36.11552866,-115.1807691 -36.115521,-115.1807691 -36.11551334,-115.1807691 -36.11550613,-115.1807691 -36.11549847,-115.1807691 -36.11549082,-115.1807691 -36.11548361,-115.1807691 -36.11547595,-115.1807691 -36.11546829,-115.1807691 -36.11546108,-115.1807691 -36.11545342,-115.1807691 -36.11544576,-115.1807691 -36.11543855,-115.1807691 -36.11543089,-115.1807691 -36.11542323,-115.1807691 -36.11541602,-115.1807691 -36.11540836,-115.180769 -36.1154007,-115.180769 -36.11539349,-115.180769 -36.11538583,-115.180769 -36.11537817,-115.180769 -36.11537097,-115.180769 -36.11536331,-115.180769 -36.11535565,-115.180769 -36.11534844,-115.180769 -36.11534078,-115.180769 -36.11533312,-115.180769 -36.11532591,-115.180769 -36.11531825,-115.180769 -36.11531059,-115.180769 -36.11530338,-115.180769 -36.11529572,-115.180769 -36.11528806,-115.180769 -36.11528085,-115.180769 -36.11527319,-115.180769 -36.11526553,-115.180769 -36.11525833,-115.180769 -36.11525067,-115.180769 -36.11524301,-115.180769 -36.1152358,-115.180769 -36.11522814,-115.180769 -36.11522048,-115.180769 -36.11521327,-115.180769 -36.11520561,-115.180769 -36.11519795,-115.180769 -36.11519074,-115.180769 -36.11518308,-115.180769 -36.11517542,-115.180769 -36.11516821,-115.180769 -36.11516055,-115.180769 -36.11515289,-115.180769 -36.11514568,-115.180769 -36.11513803,-115.180769 -36.11513037,-115.180769 -36.11512316,-115.180769 -36.1151155,-115.180769 -36.11510784,-115.180769 -36.11510063,-115.180769 -36.11509297,-115.180769 -36.11508531,-115.180769 -36.1150781,-115.180769 -36.11507044,-115.180769 -36.11506278,-115.180769 -36.11505557,-115.180769 -36.11504791,-115.180769 -36.11504025,-115.180769 -36.11503304,-115.180769 -36.11502538,-115.180769 -36.11501773,-115.180769 -36.11501052,-115.180769 -36.11500286,-115.180769 -36.1149952,-115.180769 -36.11498799,-115.180769 -36.11498033,-115.180769 -36.11497267,-115.180769 -36.11496546,-115.180769 -36.1149578,-115.180769 -36.11495014,-115.180769 -36.11494293,-115.180769 -36.11493527,-115.180769 -36.11492761,-115.180769 -36.1149204,-115.180769 -36.11491274,-115.180769 -36.11490508,-115.180769 -36.11489788,-115.180769 -36.11489022,-115.180769 -36.11488256,-115.180769 -36.11487535,-115.180769 -36.11486769,-115.180769 -36.11486003,-115.180769 -36.11485282,-115.180769 -36.11484516,-115.180769 -36.1148375,-115.180769 -36.11483029,-115.180769 -36.11482263,-115.180769 -36.11481497,-115.180769 -36.11480776,-115.180769 -36.1148001,-115.180769 -36.11479244,-115.180769 -36.11478524,-115.180769 -36.11477758,-115.180769 -36.11476992,-115.180769 -36.11476271,-115.180769 -36.11475505,-115.180769 -36.11474739,-115.180769 -36.11474018,-115.180769 -36.11473252,-115.180769 -36.11472486,-115.180769 -36.11471765,-115.180769 -36.11470999,-115.180769 -36.11470233,-115.180769 -36.11469512,-115.180769 -36.11468746,-115.180769 -36.1146798,-115.180769 -36.11467259,-115.180769 -36.11466494,-115.180769 -36.11465728,-115.180769 -36.11465007,-115.180769 -36.11464241,-115.180769 -36.11463475,-115.180769 -36.11462754,-115.180769 -36.11461988,-115.180769 -36.11461222,-115.180769 -36.11460501,-115.180769 -36.11459735,-115.180769 -36.11458969,-115.180769 -36.11458248,-115.180769 -36.11457482,-115.180769 -36.11456716,-115.180769 -36.11455995,-115.180769 -36.11455229,-115.180769 -36.11454464,-115.180769 -36.11453743,-115.180769 -36.11452977,-115.180769 -36.11452211,-115.180769 -36.1145149,-115.180769 -36.11450724,-115.180769 -36.11449958,-115.180769 -36.11449237,-115.180769 -36.11448471,-115.180769 -36.11447705,-115.180769 -36.11446984,-115.180769 -36.11446218,-115.180769 -36.11445452,-115.180769 -36.11444731,-115.180769 -36.11443965,-115.180769 -36.11443199,-115.180769 -36.11442479,-115.180769 -36.11441713,-115.180769 -36.11440947,-115.180769 -36.11440226,-115.180769 -36.1143946,-115.180769 -36.11438694,-115.180769 -36.11437973,-115.180769 -36.11437207,-115.180769 -36.11436441,-115.180769 -36.1143572,-115.180769 -36.11434954,-115.180769 -36.11434188,-115.180769 -36.11433467,-115.180769 -36.11432701,-115.180769 -36.11431935,-115.180769 -36.11431215,-115.180769 -36.11430449,-115.180769 -36.11429683,-115.180769 -36.11428962,-115.180769 -36.11428196,-115.180769 -36.1142743,-115.180769 -36.11426709,-115.180769 -36.11425943,-115.180769 -36.11425177,-115.180769 -36.11424456,-115.1807691 -36.1142369,-115.1807692 -36.11422924,-115.1807694 -36.11422204,-115.1807695 -36.11421438,-115.1807696 -36.11420672,-115.1807697 -36.11419951,-115.1807698 -36.11419185,-115.1807699 -36.11418419,-115.18077 -36.11417698,-115.1807701 -36.11416932,-115.1807702 -36.11416166,-115.1807703 -36.11415446,-115.1807704 -36.1141468,-115.1807706 -36.11413914,-115.1807707 -36.11413193,-115.1807708 -36.11412427,-115.1807709 -36.11411661,-115.180771 -36.1141094,-115.1807711 -36.11410174,-115.1807712 -36.11409408,-115.1807713 -36.11408688,-115.1807714 -36.11407922,-115.1807715 -36.11407156,-115.1807716 -36.11406435,-115.1807718 -36.11405669,-115.1807719 -36.11404903,-115.180772 -36.11404182,-115.1807721 -36.11403416,-115.1807722 -36.1140265,-115.1807723 -36.1140193,-115.1807724 -36.11401164,-115.1807725 -36.11400398,-115.1807726 -36.11399677,-115.1807727 -36.11398911,-115.1807728 -36.11398145,-115.180773 -36.11397424,-115.1807731 -36.11396658,-115.1807732 -36.11395893,-115.1807733 -36.11395172,-115.1807734 -36.11394406,-115.1807735 -36.1139364,-115.1807736 -36.11392919,-115.1807737 -36.11392153,-115.1807738 -36.11391387,-115.1807739 -36.11390666,-115.180774 -36.113899,-115.1807741 -36.11389135,-115.1807743 -36.11388414,-115.1807744 -36.11387648,-115.1807745 -36.11386882,-115.1807746 -36.11386161,-115.1807747 -36.11385395,-115.1807748 -36.11384629,-115.1807749 -36.11383908,-115.180775 -36.11383142,-115.1807751 -36.11382377,-115.1807752 -36.11381656,-115.1807753 -36.1138089,-115.1807755 -36.11380124,-115.1807756 -36.11379403,-115.1807757 -36.11378637,-115.1807758 -36.11377871,-115.1807759 -36.1137715,-115.180776 -36.11376385,-115.1807761 -36.11375619,-115.1807762 -36.11374898,-115.1807763 -36.11374132,-115.1807764 -36.11373366,-115.1807765 -36.11372645,-115.1807767 -36.11371879,-115.1807768 -36.11371113,-115.1807769 -36.11370392,-115.180777 -36.11369627,-115.1807771 -36.11368861,-115.1807772 -36.1136814,-115.1807773 -36.11367374,-115.1807774 -36.11366608,-115.1807775 -36.11365887,-115.1807776 -36.11365121,-115.1807777 -36.11364355,-115.1807779 -36.11363635,-115.180778 -36.11362869,-115.1807781 -36.11362103,-115.1807782 -36.11361382,-115.1807783 -36.11360616,-115.1807784 -36.1135985,-115.1807785 -36.11359129,-115.1807786 -36.11358363,-115.1807787 -36.11357597,-115.1807788 -36.11356877,-115.1807789 -36.11356111,-115.180779 -36.11355345,-115.1807792 -36.11354624,-115.1807793 -36.11353858,-115.1807794 -36.11353092,-115.1807795 -36.11352371,-115.1807796 -36.11351605,-115.1807797 -36.11350839,-115.1807798 -36.11350119,-115.1807799 -36.11349353,-115.18078 -36.11348587,-115.1807801 -36.11347866,-115.1807802 -36.113471,-115.1807804 -36.11346334,-115.1807805 -36.11345613,-115.1807806 -36.11344847,-115.1807807 -36.11344081,-115.1807808 -36.11343361,-115.1807809 -36.11342595,-115.180781 -36.11341829,-115.1807811 -36.11341108,-115.1807812 -36.11340342,-115.1807813 -36.11339576,-115.1807814 -36.11338855,-115.1807816 -36.11338089,-115.1807817 -36.11337324,-115.1807818 -36.11336603,-115.1807819 -36.11335837,-115.180782 -36.11335071,-115.1807821 -36.1133435,-115.1807822 -36.11333584,-115.1807823 -36.11332818,-115.1807824 -36.11332097,-115.1807825 -36.11331331,-115.1807826 -36.11330566,-115.1807828 -36.11329845,-115.1807829 -36.11329079,-115.180783 -36.11328313,-115.1807831 -36.11327592,-115.1807832 -36.11326826,-115.1807833 -36.1132606,-115.1807834 -36.11325339,-115.1807835 -36.11324573,-115.1807836 -36.11323808,-115.1807837 -36.11323087,-115.1807838 -36.11322321,-115.180784 -36.11321555,-115.1807841 -36.11320834,-115.1807842 -36.11320068,-115.1807843 -36.11319302,-115.1807844 -36.11318581,-115.1807845 -36.11317816,-115.1807846 -36.1131705,-115.1807847 -36.11316329,-115.1807848 -36.11315563,-115.1807849 -36.11314797,-115.180785 -36.11314076,-115.1807851 -36.1131331,-115.1807853 -36.11312544,-115.1807854 -36.11311823,-115.1807855 -36.11311058,-115.1807856 -36.11310292,-115.1807857 -36.11309571,-115.1807858 -36.11308805,-115.1807859 -36.11308039,-115.180786 -36.11307318,-115.1807861 -36.11306552,-115.1807862 -36.11305786,-115.1807863 -36.11305065,-115.1807865 -36.113043,-115.1807866 -36.11303534,-115.1807867 -36.11302813,-115.1807868 -36.11302047,-115.1807869 -36.11301281,-115.180787 -36.1130056,-115.1807871 -36.11299794,-115.1807872 -36.11299028,-115.1807873 -36.11298308,-115.1807874 -36.11297542,-115.1807875 -36.11296776,-115.1807877 -36.11296055,-115.1807878 -36.11295289,-115.1807879 -36.11294523,-115.180788 -36.11293802,-115.1807881 -36.11293036,-115.1807882 -36.1129227,-115.1807883 -36.1129155,-115.1807884 -36.11290784,-115.1807885 -36.11290018,-115.1807886 -36.11289297,-115.1807887 -36.11288531,-115.1807889 -36.11287765,-115.180789 -36.11287044,-115.1807891 -36.11286278,-115.1807892 -36.11285512,-115.1807893 -36.11284792,-115.1807894 -36.11284026,-115.1807895 -36.1128326,-115.1807896 -36.11282539,-115.1807897 -36.11281773,-115.1807898 -36.11281007,-115.1807899 -36.11280286,-115.18079 -36.1127952,-115.1807902 -36.11278754,-115.1807903 -36.11278034,-115.1807904 -36.11277268,-115.1807905 -36.11276502,-115.1807906 -36.11275781,-115.1807907 -36.11275015,-115.1807908 -36.11274249,-115.1807909 -36.11273528,-115.180791 -36.11272762,-115.1807911 -36.11271997,-115.1807912 -36.11271276,-115.1807914 -36.1127051,-115.1807915 -36.11269744,-115.1807916 -36.11269023,-115.1807917 -36.11268257,-115.1807918 -36.11267491,-115.1807919 -36.1126677,-115.180792 -36.11266004,-115.1807921 -36.11265239,-115.1807922 -36.11264518,-115.1807923 -36.11263752,-115.1807924 -36.11262986,-115.1807926 -36.11262265,-115.1807927 -36.11261499,-115.1807928 -36.11260733,-115.1807929 -36.11260012,-115.180793 -36.11259246,-115.1807931 -36.11258481,-115.1807932 -36.1125776,-115.1807933 -36.11256994,-115.1807934 -36.11256228,-115.1807935 -36.11255507,-115.1807936 -36.11254741,-115.1807938 -36.11253975,-115.1807939 -36.11253254,-115.180794 -36.11252489,-115.1807941 -36.11251723,-115.1807942 -36.11251002,-115.1807943 -36.11250236,-115.1807944 -36.1124947,-115.1807945 -36.11248749,-115.1807946 -36.11247983,-115.1807947 -36.11247217,-115.1807948 -36.11246496,-115.1807949 -36.11245731,-115.1807951 -36.11244965,-115.1807952 -36.11244244,-115.1807953 -36.11243478,-115.1807954 -36.11242712,-115.1807955 -36.11241991,-115.1807956 -36.11241225,-115.1807957 -36.11240459,-115.1807958 -36.11239738,-115.1807959 -36.11238973,-115.180796 -36.11238207,-115.1807962 -36.11237486,-115.1807963 -36.1123672,-115.1807964 -36.11235954,-115.1807965 -36.11235233,-115.1807966 -36.11234467,-115.1807967 -36.11233701,-115.1807968 -36.11232981,-115.1807969 -36.11232215,-115.180797 -36.11231449,-115.1807971 -36.11230728,-115.1807972 -36.11229962,-115.1807973 -36.11229196,-115.1807975 -36.11228475,-115.1807976 -36.11227709,-115.1807977 -36.11226943,-115.1807978 -36.11226223,-115.1807979 -36.11225457,-115.180798 -36.11224691,-115.1807981 -36.1122397,-115.1807982 -36.11223204,-115.1807983 -36.11222438,-115.1807984 -36.11221717,-115.1807985 -36.11220951,-115.1807987 -36.11220185,-115.1807988 -36.11219465,-115.1807989 -36.11218699,-115.180799 -36.11217933,-115.1807991 -36.11217212,-115.1807992 -36.11216446,-115.1807993 -36.1121568,-115.1807994 -36.11214959,-115.1807995 -36.11214193,-115.1807996 -36.11213427,-115.1807997 -36.11212707,-115.1807998 -36.11211941,-115.1808 -36.11211175,-115.1808001 -36.11210454,-115.1808002 -36.11209688,-115.1808003 -36.11208922,-115.1808004 -36.11208201,-115.1808005 -36.11207435,-115.1808006 -36.1120667,-115.1808007 -36.11205949,-115.1808008 -36.11205183,-115.1808009 -36.11204417,-115.1808011 -36.11203696,-115.1808012 -36.1120293,-115.1808013 -36.11202164,-115.1808014 -36.11201443,-115.1808015 -36.11200677,-115.1808016 -36.11199912,-115.1808017 -36.11199191,-115.1808018 -36.11198425,-115.1808019 -36.11197659,-115.180802 -36.11196938,-115.1808021 -36.11196172,-115.1808022 -36.11195406,-115.1808024 -36.11194685,-115.1808025 -36.11193919,-115.1808026 -36.11193154,-115.1808027 -36.11192433,-115.1808028 -36.11191667,-115.1808029 -36.11190901,-115.180803 -36.1119018,-115.1808031 -36.11189414,-115.1808032 -36.11188648,-115.1808033 -36.11187927,-115.1808034 -36.11187162,-115.1808036 -36.11186396,-115.1808037 -36.11185675,-115.1808038 -36.11184909,-115.1808039 -36.11184143,-115.180804 -36.11183422,-115.1808041 -36.11182656,-115.1808042 -36.1118189,-115.1808043 -36.11181169,-115.1808044 -36.11180404,-115.1808045 -36.11179638,-115.1808046 -36.11178917,-115.1808048 -36.11178151,-115.1808049 -36.11177385,-115.180805 -36.11176664,-115.1808051 -36.11175898,-115.1808052 -36.11175132,-115.1808053 -36.11174411,-115.1808054 -36.11173646,-115.1808055 -36.1117288,-115.1808056 -36.11172159,-115.1808057 -36.11171393,-115.1808058 -36.11170627,-115.180806 -36.11169906,-115.1808061 -36.1116914,-115.1808062 -36.11168374,-115.1808063 -36.11167654,-115.1808064 -36.11166888,-115.1808065 -36.11166122,-115.1808066 -36.11165401,-115.1808067 -36.11164635,-115.1808068 -36.11163869,-115.1808069 -36.11163148,-115.180807 -36.11162382,-115.1808071 -36.11161616,-115.1808073 -36.11160896,-115.1808074 -36.1116013,-115.1808075 -36.11159364,-115.1808076 -36.11158643,-115.1808077 -36.11157877,-115.1808078 -36.11157111,-115.1808079 -36.1115639,-115.180808 -36.11155624,-115.1808081 -36.11154858,-115.1808082 -36.11154138,-115.1808083 -36.11153372,-115.1808085 -36.11152606,-115.1808086 -36.11151885,-115.1808087 -36.11151119,-115.1808088 -36.11150353,-115.1808089 -36.11149632,-115.180809 -36.11148866,-115.1808091 -36.111481,-115.1808092 -36.1114738,-115.1808093 -36.11146614,-115.1808094 -36.11145848,-115.1808095 -36.11145127,-115.1808097 -36.11144361,-115.1808098 -36.11143595,-115.1808099 -36.11142874,-115.18081 -36.11142108,-115.1808101 -36.11141342,-115.1808102 -36.11140622,-115.1808103 -36.11139856,-115.1808104 -36.1113909,-115.1808105 -36.11138369,-115.1808106 -36.11137603,-115.1808107 -36.11136837,-115.1808109 -36.11136116,-115.180811 -36.1113535,-115.1808111 -36.11134585,-115.1808112 -36.11133864,-115.1808113 -36.11133098,-115.1808114 -36.11132332,-115.1808115 -36.11131611,-115.1808116 -36.11130845,-115.1808117 -36.11130079,-115.1808118 -36.11129358,-115.1808119 -36.11128592,-115.180812 -36.11127827,-115.1808122 -36.11127106,-115.1808123 -36.1112634,-115.1808124 -36.11125574,-115.1808125 -36.11124853,-115.1808126 -36.11124087,-115.1808127 -36.11123321,-115.1808128 -36.111226,-115.1808129 -36.11121834,-115.180813 -36.11121069,-115.1808131 -36.11120348,-115.1808132 -36.11119582,-115.1808134 -36.11118816,-115.1808135 -36.11118095,-115.1808136 -36.11117329,-115.1808137 -36.11116563,-115.1808138 -36.11115842,-115.1808139 -36.11115077,-115.180814 -36.11114311,-115.1808141 -36.1111359,-115.1808142 -36.11112824,-115.1808143 -36.11112058,-115.1808144 -36.11111337,-115.1808146 -36.11110571,-115.1808147 -36.11109805,-115.1808148 -36.11109084,-115.1808149 -36.11108319,-115.180815 -36.11107553,-115.1808151 -36.11106832,-115.1808152 -36.11106066,-115.1808153 -36.111053,-115.1808154 -36.11104579,-115.1808155 -36.11103813,-115.1808156 -36.11103047,-115.1808158 -36.11102326,-115.1808159 -36.11101561,-115.180816 -36.11100795,-115.1808161 -36.11100074,-115.1808162 -36.11099308,-115.1808163 -36.11098542,-115.1808164 -36.11097821,-115.1808165 -36.11097055,-115.1808166 -36.11096289,-115.1808167 -36.11095569,-115.1808168 -36.11094803,-115.180817 -36.11094037,-115.1808171 -36.11093316,-115.1808172 -36.1109255,-115.1808173 -36.11091784,-115.1808174 -36.11091063,-115.1808175 -36.11090297,-115.1808176 -36.11089531,-115.1808177 -36.11088811,-115.1808178 -36.11088045,-115.1808179 -36.11087279,-115.180818 -36.11086558,-115.1808181 -36.11085792,-115.1808183 -36.11085026,-115.1808184 -36.11084305,-115.1808185 -36.11083539,-115.1808186 -36.11082773,-115.1808187 -36.11082053,-115.1808188 -36.11081287,-115.1808189 -36.11080521,-115.180819 -36.110798,-115.1808191 -36.11079034,-115.1808192 -36.11078268,-115.1808193 -36.11077547,-115.1808195 -36.11076781,-115.1808196 -36.11076015,-115.1808197 -36.11075295,-115.1808198 -36.11074529,-115.1808199 -36.11073763,-115.18082 -36.11073042,-115.1808201 -36.11072276,-115.1808202 -36.1107151,-115.1808203 -36.11070789,-115.1808204 -36.11070023,-115.1808205 -36.11069257,-115.1808207 -36.11068537,-115.1808208 -36.11067771,-115.1808209 -36.11067005,-115.180821 -36.11066284,-115.1808211 -36.11065518,-115.1808212 -36.11064752,-115.1808213 -36.11064031,-115.1808214 -36.11063265,-115.1808215 -36.110625,-115.1808216 -36.11061779,-115.1808217 -36.11061013,-115.1808219 -36.11060247,-115.180822 -36.11059526,-115.1808221 -36.1105876,-115.1808222 -36.11057994,-115.1808223 -36.11057273,-115.1808224 -36.11056507,-115.1808225 -36.11055742,-115.1808226 -36.11055021,-115.1808227 -36.11054255,-115.1808228 -36.11053489,-115.1808229 -36.11052768,-115.180823 -36.11052002,-115.1808232 -36.11051236,-115.1808233 -36.11050515,-115.1808234 -36.11049749,-115.1808235 -36.11048984,-115.1808236 -36.11048263,-115.1808237 -36.11047497,-115.1808238 -36.11046731,-115.1808239 -36.1104601,-115.180824 -36.11045244,-115.1808241 -36.11044478,-115.1808242 -36.11043757,-115.1808243 -36.11042991,-115.1808244 -36.11042226,-115.1808244 -36.11041505,-115.1808245 -36.11040739,-115.1808246 -36.11039973,-115.1808247 -36.11039252,-115.1808248 -36.11038486,-115.1808249 -36.1103772,-115.1808249 -36.11036999,-115.180825 -36.11036233,-115.1808251 -36.11035467,-115.1808252 -36.11034746,-115.1808253 -36.11033981,-115.1808254 -36.11033215,-115.1808254 -36.11032494,-115.1808255 -36.11031728,-115.1808256 -36.11030962,-115.1808257 -36.11030241,-115.1808258 -36.11029475,-115.1808259 -36.11028709,-115.1808259 -36.11027988,-115.180826 -36.11027222,-115.1808261 -36.11026456,-115.1808262 -36.11025736,-115.1808263 -36.1102497,-115.1808264 -36.11024204,-115.1808264 -36.11023483,-115.1808265 -36.11022717,-115.1808266 -36.11021951,-115.1808267 -36.1102123,-115.1808268 -36.11020464,-115.1808269 -36.11019698,-115.1808269 -36.11018977,-115.180827 -36.11018211,-115.1808271 -36.11017446,-115.1808272 -36.11016725,-115.1808273 -36.11015959,-115.1808274 -36.11015193,-115.1808274 -36.11014472,-115.1808275 -36.11013706,-115.1808276 -36.1101294,-115.1808277 -36.11012219,-115.1808278 -36.11011453,-115.1808279 -36.11010687,-115.1808279 -36.11009967,-115.180828 -36.11009201,-115.1808281 -36.11008435,-115.1808282 -36.11007714,-115.1808283 -36.11006948,-115.1808284 -36.11006182,-115.1808284 -36.11005461,-115.1808285 -36.11004695,-115.1808286 -36.11003929,-115.1808287 -36.11003208,-115.1808288 -36.11002442,-115.1808289 -36.11001677,-115.1808289 -36.11000956,-115.180829 -36.1100019,-115.1808291 -36.10999424,-115.1808292 -36.10998703,-115.1808293 -36.10997937,-115.1808294 -36.10997171,-115.1808294 -36.1099645,-115.1808295 -36.10995684,-115.1808296 -36.10994918,-115.1808297 -36.10994197,-115.1808298 -36.10993432,-115.1808298 -36.10992666,-115.1808299 -36.10991945,-115.18083 -36.10991179,-115.1808301 -36.10990413,-115.1808302 -36.10989692,-115.1808303 -36.10988926,-115.1808303 -36.1098816,-115.1808304 -36.10987439,-115.1808305 -36.10986673,-115.1808306 -36.10985907,-115.1808307 -36.10985187,-115.1808308 -36.10984421,-115.1808308 -36.10983655,-115.1808309 -36.10982934,-115.180831 -36.10982168,-115.1808311 -36.10981402,-115.1808312 -36.10980681,-115.1808313 -36.10979915,-115.1808313 -36.10979149,-115.1808314 -36.10978428,-115.1808315 -36.10977662,-115.1808316 -36.10976897,-115.1808317 -36.10976176,-115.1808318 -36.1097541,-115.1808318 -36.10974644,-115.1808319 -36.10973923,-115.180832 -36.10973157,-115.1808321 -36.10972391,-115.1808322 -36.1097167,-115.1808323 -36.10970904,-115.1808323 -36.10970138,-115.1808324 -36.10969418,-115.1808325 -36.10968652,-115.1808326 -36.10967886,-115.1808327 -36.10967165,-115.1808328 -36.10966399,-115.1808328 -36.10965633,-115.1808329 -36.10964912,-115.180833 -36.10964146,-115.1808331 -36.1096338,-115.1808332 -36.10962659,-115.1808333 -36.10961893,-115.1808333 -36.10961128,-115.1808334 -36.10960407,-115.1808335 -36.10959641,-115.1808336 -36.10958875,-115.1808337 -36.10958154,-115.1808338 -36.10957388,-115.1808338 -36.10956622,-115.1808339 -36.10955901,-115.180834 -36.10955135,-115.1808341 -36.10954369,-115.1808342 -36.10953648,-115.1808343 -36.10952883,-115.1808343 -36.10952117,-115.1808344 -36.10951396,-115.1808345 -36.1095063,-115.1808346 -36.10949864,-115.1808347 -36.10949143,-115.1808348 -36.10948377,-115.1808348 -36.10947611,-115.1808349 -36.1094689,-115.180835 -36.10946124,-115.1808351 -36.10945358,-115.1808352 -36.10944638,-115.1808353 -36.10943872,-115.1808353 -36.10943106,-115.1808354 -36.10942385,-115.1808355 -36.10941619,-115.1808356 -36.10940853,-115.1808357 -36.10940132,-115.1808358 -36.10939366,-115.1808358 -36.109386,-115.1808359 -36.10937879,-115.180836 -36.10937113,-115.1808361 -36.10936348,-115.1808362 -36.10935627,-115.1808363 -36.10934861,-115.1808363 -36.10934095,-115.1808364 -36.10933374,-115.1808365 -36.10932608,-115.1808366 -36.10931842,-115.1808367 -36.10931121,-115.1808368 -36.10930355,-115.1808368 -36.10929589,-115.1808369 -36.10928869,-115.180837 -36.10928103,-115.1808371 -36.10927337,-115.1808372 -36.10926616,-115.1808373 -36.1092585,-115.1808373 -36.10925084,-115.1808374 -36.10924363,-115.1808375 -36.10923597,-115.1808376 -36.10922831,-115.1808377 -36.1092211,-115.1808378 -36.10921344,-115.1808378 -36.10920579,-115.1808379 -36.10919858,-115.180838 -36.10919092,-115.1808381 -36.10918326,-115.1808382 -36.10917605,-115.1808383 -36.10916839,-115.1808383 -36.10916073,-115.1808384 -36.10915352,-115.1808385 -36.10914586,-115.1808386 -36.1091382,-115.1808387 -36.10913099,-115.1808388 -36.10912334,-115.1808388 -36.10911568,-115.1808389 -36.10910847,-115.180839 -36.10910081,-115.1808391 -36.10909315,-115.1808392 -36.10908594,-115.1808393 -36.10907828,-115.1808393 -36.10907062,-115.1808394 -36.10906341,-115.1808395 -36.10905575,-115.1808396 -36.10904809,-115.1808397 -36.10904089,-115.1808398 -36.10903323,-115.1808398 -36.10902557,-115.1808399 -36.10901836,-115.18084 -36.1090107,-115.1808401 -36.10900304,-115.1808402 -36.10899583,-115.1808403 -36.10898817,-115.1808403 -36.10898051,-115.1808404 -36.1089733,-115.1808405 -36.10896564,-115.1808406 -36.10895799,-115.1808407 -36.10895078,-115.1808408 -36.10894312,-115.1808408 -36.10893546,-115.1808409 -36.10892825,-115.180841 -36.10892059,-115.1808411 -36.10891293,-115.1808412 -36.10890572,-115.1808413 -36.10889806,-115.1808413 -36.1088904,-115.1808414 -36.1088832,-115.1808415 -36.10887554,-115.1808416 -36.10886788,-115.1808417 -36.10886067,-115.1808418 -36.10885301,-115.1808418 -36.10884535,-115.1808419 -36.10883814,-115.180842 -36.10883048,-115.1808421 -36.10882282,-115.1808422 -36.10881561,-115.1808423 -36.10880795,-115.1808423 -36.10880029,-115.1808424 -36.10879309,-115.1808425 -36.10878543,-115.1808426 -36.10877777,-115.1808427 -36.10877056,-115.1808427 -36.1087629,-115.1808428 -36.10875524,-115.1808429 -36.10874803,-115.180843 -36.10874037,-115.1808431 -36.10873271,-115.1808432 -36.1087255,-115.1808432 -36.10871785,-115.1808433 -36.10871019,-115.1808434 -36.10870298,-115.1808435 -36.10869532,-115.1808436 -36.10868766,-115.1808437 -36.10868045,-115.1808437 -36.10867279,-115.1808438 -36.10866513,-115.1808439 -36.10865792,-115.180844 -36.10865026,-115.1808441 -36.1086426,-115.1808442 -36.1086354,-115.1808442 -36.10862774,-115.1808443 -36.10862008,-115.1808444 -36.10861287,-115.1808445 -36.10860521,-115.1808446 -36.10859755,-115.1808447 -36.10859034,-115.1808447 -36.10858268,-115.1808448 -36.10857502,-115.1808449 -36.10856781,-115.180845 -36.10856015,-115.1808451 -36.1085525,-115.1808452 -36.10854529,-115.1808452 -36.10853763,-115.1808453 -36.10852997,-115.1808454 -36.10852276,-115.1808455 -36.1085151,-115.1808456 -36.10850744,-115.1808457 -36.10850023,-115.1808457 -36.10849257,-115.1808458 -36.10848491,-115.1808459 -36.10847771,-115.180846 -36.10847005,-115.1808461 -36.10846239,-115.1808462 -36.10845518,-115.1808462 -36.10844752,-115.1808463 -36.10843986,-115.1808464 -36.10843265,-115.1808465 -36.10842499,-115.1808466 -36.10841733,-115.1808467 -36.10841012,-115.1808467 -36.10840246,-115.1808468 -36.1083948,-115.1808469 -36.1083876,-115.180847 -36.10837994,-115.1808471 -36.10837228,-115.1808472 -36.10836507,-115.1808472 -36.10835741,-115.1808473 -36.10834975,-115.1808474 -36.10834254,-115.1808475 -36.10833488,-115.1808476 -36.10832722,-115.1808477 -36.10832001,-115.1808477 -36.10831236,-115.1808478 -36.1083047,-115.1808479 -36.10829749,-115.180848 -36.10828983,-115.1808481 -36.10828217,-115.1808482 -36.10827496,-115.1808482 -36.1082673,-115.1808483 -36.10825964,-115.1808484 -36.10825243,-115.1808485 -36.10824477,-115.1808486 -36.10823711,-115.1808487 -36.10822991,-115.1808487 -36.10822225,-115.1808488 -36.10821459,-115.1808489 -36.10820738,-115.180849 -36.10819972,-115.1808491 -36.10819206,-115.1808492 -36.10818485,-115.1808492 -36.10817719,-115.1808493 -36.10816953,-115.1808494 -36.10816232,-115.1808495 -36.10815466,-115.1808496 -36.10814701,-115.1808497 -36.1081398,-115.1808497 -36.10813214,-115.1808498 -36.10812448,-115.1808499 -36.10811727,-115.18085 -36.10810961,-115.1808501 -36.10810195,-115.1808502 -36.10809474,-115.1808502 -36.10808708,-115.1808503 -36.10807942,-115.1808504 -36.10807221,-115.1808505 -36.10806456,-115.1808506 -36.1080569,-115.1808507 -36.10804969,-115.1808507 -36.10804203,-115.1808508 -36.10803437,-115.1808509 -36.10802716,-115.180851 -36.1080195,-115.1808511 -36.10801184,-115.1808512 -36.10800463,-115.1808512 -36.10799697,-115.1808513 -36.10798931,-115.1808514 -36.10798211,-115.1808515 -36.10797445,-115.1808516 -36.10796679,-115.1808517 -36.10795958,-115.1808517 -36.10795192,-115.1808518 -36.10794426,-115.1808519 -36.10793705,-115.180852 -36.10792939,-115.1808521 -36.10792173,-115.1808522 -36.10791452,-115.1808522 -36.10790686,-115.1808523 -36.10789921,-115.1808524 -36.107892,-115.1808525 -36.10788434,-115.1808526 -36.10787668,-115.1808527 -36.10786947,-115.1808527 -36.10786181,-115.1808528 -36.10785415,-115.1808529 -36.10784694,-115.180853 -36.10783928,-115.1808531 -36.10783162,-115.1808532 -36.10782442,-115.1808532 -36.10781676,-115.1808533 -36.1078091,-115.1808534 -36.10780189,-115.1808535 -36.10779423,-115.1808536 -36.10778657,-115.1808537 -36.10777936,-115.1808537 -36.1077717,-115.1808538 -36.10776404,-115.1808539 -36.10775683,-115.180854 -36.10774917,-115.1808541 -36.10774152,-115.1808542 -36.10773431,-115.1808542 -36.10772665,-115.1808543 -36.10771899,-115.1808544 -36.10771178,-115.1808545 -36.10770412,-115.1808546 -36.10769646,-115.1808547 -36.10768925,-115.1808547 -36.10768159,-115.1808548 -36.10767393,-115.1808549 -36.10766672,-115.180855 -36.10765907,-115.1808551 -36.10765141,-115.1808552 -36.1076442,-115.1808552 -36.10763654,-115.1808553 -36.10762888,-115.1808554 -36.10762167,-115.1808555 -36.10761401,-115.1808556 -36.10760635,-115.1808557 -36.10759914,-115.1808557 -36.10759148,-115.1808558 -36.10758382,-115.1808559 -36.10757662,-115.180856 -36.10756896,-115.1808561 -36.1075613,-115.1808562 -36.10755409,-115.1808562 -36.10754643,-115.1808563 -36.10753877,-115.1808564 -36.10753156,-115.1808565 -36.1075239,-115.1808566 -36.10751624,-115.1808567 -36.10750903,-115.1808567 -36.10750137,-115.1808568 -36.10749372,-115.1808569 -36.10748651,-115.180857 -36.10747885,-115.1808571 -36.10747119,-115.1808572 -36.10746398,-115.1808572 -36.10745632,-115.1808573 -36.10744866,-115.1808574 -36.10744145,-115.1808575 -36.10743379,-115.1808576 -36.10742613,-115.1808577 -36.10741893,-115.1808577 -36.10741127,-115.1808578 -36.10740361,-115.1808579 -36.1073964,-115.180858 -36.10738874,-115.1808581 -36.10738108,-115.1808582 -36.10737387,-115.1808582 -36.10736621,-115.1808583 -36.10735855,-115.1808584 -36.10735134,-115.1808585 -36.10734368,-115.1808586 -36.10733602,-115.1808587 -36.10732882,-115.1808587 -36.10732116,-115.1808588 -36.1073135,-115.1808589 -36.10730629,-115.180859 -36.10729863,-115.1808591 -36.10729097,-115.1808592 -36.10728376,-115.1808592 -36.1072761,-115.1808593 -36.10726844,-115.1808594 -36.10726123,-115.1808595 -36.10725358,-115.1808596 -36.10724592,-115.1808597 -36.10723871,-115.1808597 -36.10723105,-115.1808598 -36.10722339,-115.1808599 -36.10721618,-115.18086 -36.10720852,-115.1808601 -36.10720086,-115.1808602 -36.10719365,-115.1808602 -36.10718599,-115.1808603 -36.10717833,-115.1808604 -36.10717113,-115.1808605 -36.10716347,-115.1808606 -36.10715581,-115.1808606 -36.1071486,-115.1808607 -36.10714094,-115.1808608 -36.10713328,-115.1808609 -36.10712607,-115.180861 -36.10711841,-115.1808611 -36.10711075,-115.1808611 -36.10710354,-115.1808612 -36.10709588,-115.1808613 -36.10708823,-115.1808614 -36.10708102,-115.1808615 -36.10707336,-115.1808616 -36.1070657,-115.1808616 -36.10705849,-115.1808617 -36.10705083,-115.1808618 -36.10704317,-115.1808619 -36.10703596,-115.180862 -36.1070283,-115.1808621 -36.10702064,-115.1808621 -36.10701343,-115.1808622 -36.10700578,-115.1808623 -36.10699812,-115.1808624 -36.10699091,-115.1808625 -36.10698325,-115.1808626 -36.10697559,-115.1808626 -36.10696838,-115.1808627 -36.10696072,-115.1808628 -36.10695306,-115.1808629 -36.10694585,-115.180863 -36.10693819,-115.1808631 -36.10693053,-115.1808631 -36.10692333,-115.1808632 -36.10691567,-115.1808633 -36.10690801,-115.1808634 -36.1069008,-115.1808635 -36.10689314,-115.1808636 -36.10688548,-115.1808636 -36.10687827,-115.1808637 -36.10687061,-115.1808638 -36.10686295,-115.1808639 -36.10685574,-115.180864 -36.10684808,-115.1808641 -36.10684043,-115.1808641 -36.10683322,-115.1808642 -36.10682556,-115.1808643 -36.1068179,-115.1808644 -36.10681069,-115.1808645 -36.10680303,-115.1808646 -36.10679537,-115.1808646 -36.10678816,-115.1808647 -36.1067805,-115.1808648 -36.10677284,-115.1808649 -36.10676564,-115.180865 -36.10675798,-115.1808651 -36.10675032,-115.1808651 -36.10674311,-115.1808652 -36.10673545,-115.1808653 -36.10672779,-115.1808654 -36.10672058,-115.1808655 -36.10671292,-115.1808656 -36.10670526,-115.1808656 -36.10669805,-115.1808657 -36.10669039,-115.1808658 -36.10668273,-115.1808659 -36.10667553,-115.180866 -36.10666787,-115.1808661 -36.10666021,-115.1808661 -36.106653,-115.1808662 -36.10664534,-115.1808663 -36.10663768,-115.1808664 -36.10663047,-115.1808665 -36.10662281,-115.1808666 -36.10661515,-115.1808666 -36.10660794,-115.1808667 -36.10660029,-115.1808668 -36.10659263,-115.1808669 -36.10658542,-115.180867 -36.10657776,-115.1808671 -36.1065701,-115.1808671 -36.10656289,-115.1808672 -36.10655523,-115.1808673 -36.10654757,-115.1808674 -36.10654036,-115.1808675 -36.1065327,-115.1808676 -36.10652504,-115.1808676 -36.10651784,-115.1808677 -36.10651018,-115.1808678 -36.10650252,-115.1808679 -36.10649531,-115.180868 -36.10648765,-115.1808681 -36.10647999,-115.1808681 -36.10647278,-115.1808682 -36.10646512,-115.1808683 -36.10645746,-115.1808684 -36.10645025,-115.1808685 -36.10644259,-115.1808686 -36.10643494,-115.1808686 -36.10642773,-115.1808687 -36.10642007,-115.1808688 -36.10641241,-115.1808689 -36.1064052,-115.180869 -36.10639754,-115.1808691 -36.10638988,-115.1808691 -36.10638267,-115.1808692 -36.10637501,-115.1808693 -36.10636735,-115.1808694 -36.10636014,-115.1808695 -36.10635249,-115.1808696 -36.10634483,-115.1808696 -36.10633762,-115.1808697 -36.10632996,-115.1808698 -36.1063223,-115.1808699 -36.10631509,-115.18087 -36.10630743,-115.1808701 -36.10629977,-115.1808701 -36.10629256,-115.1808702 -36.1062849,-115.1808703 -36.10627724,-115.1808704 -36.10627004,-115.1808705 -36.10626238,-115.1808706 -36.10625472,-115.1808706 -36.10624751,-115.1808707 -36.10623985,-115.1808708 -36.10623219,-115.1808709 -36.10622498,-115.180871 -36.10621732,-115.1808711 -36.10620966,-115.1808711 -36.10620245,-115.1808712 -36.10619479,-115.1808713 -36.10618714,-115.1808714 -36.10617993,-115.1808715 -36.10617227,-115.1808716 -36.10616461,-115.1808716 -36.1061574,-115.1808717 -36.10614974,-115.1808718 -36.10614208,-115.1808719 -36.10613487,-115.180872 -36.10612721,-115.1808721 -36.10611955,-115.1808721 -36.10611234,-115.1808722 -36.10610469,-115.1808723 -36.10609703,-115.1808724 -36.10608982,-115.1808725 -36.10608216,-115.1808726 -36.1060745,-115.1808726 -36.10606729,-115.1808727 -36.10605963,-115.1808728 -36.10605197,-115.1808729 -36.10604476,-115.180873 -36.1060353,-115.1808731 -36.10602539,-115.1808732 -36.10601593,-115.1808733 -36.10600692,-115.1808734 -36.10599701,-115.1808735 -36.10598754,-115.1808736 -36.10597808,-115.1808737 -36.10596817,-115.1808738 -36.10595781,-115.1808739 -36.1059479,-115.180874 -36.10593843,-115.1808741 -36.10592852,-115.1808743 -36.10591861,-115.1808744 -36.10590239,-115.1808745 -36.10589248,-115.1808747 -36.10588302,-115.1808748 -36.10587356,-115.1808749 -36.10586364,-115.180875 -36.10585373,-115.1808751 -36.10584382,-115.1808752 -36.10583301,-115.1808753 -36.10582355,-115.1808754 -36.10581318,-115.1808755 -36.10580282,-115.1808756 -36.10579336,-115.1808758 -36.10578435,-115.1808759 -36.10577534,-115.180876 -36.10576002,-115.1808761 -36.10575101,-115.1808762 -36.10574155,-115.1808763 -36.10573208,-115.1808764 -36.10572262,-115.1808765 -36.10571316,-115.1808766 -36.1057037,-115.1808767 -36.10569469,-115.1808768 -36.10568568,-115.1808769 -36.10567577,-115.1808771 -36.10566676,-115.1808772 -36.1056582,-115.1808773 -36.10564964,-115.1808773 -36.10564062,-115.1808774 -36.10563206,-115.1808775 -36.10561719,-115.1808777 -36.10560683,-115.1808778 -36.10559917,-115.1808779 -36.10559016,-115.180878 -36.1055807,-115.1808781 -36.10557259,-115.1808782 -36.10556448,-115.1808783 -36.10555637,-115.1808784 -36.10554826,-115.1808785 -36.10553925,-115.1808786 -36.10553159,-115.1808787 -36.10552303,-115.1808787 -36.10551492,-115.1808788 -36.10550771,-115.1808789 -36.10550005,-115.180879 -36.10549239,-115.1808791 -36.10548519,-115.1808792 -36.10547753,-115.1808793 -36.10546987,-115.1808793 -36.10546266,-115.1808794 -36.105455,-115.1808795 -36.10544734,-115.1808796 -36.10544013,-115.1808797 -36.10543247,-115.1808798 -36.10542481,-115.1808798 -36.1054176,-115.1808799 -36.10540995,-115.18088 -36.10540229,-115.1808801 -36.10539508,-115.1808802 -36.10538742,-115.1808803 -36.10537976,-115.1808803 -36.10537255,-115.1808804 -36.10536489,-115.1808805 -36.10535723,-115.1808806 -36.10535002,-115.1808807 -36.10534236,-115.1808808 -36.1053347,-115.1808808 -36.1053275,-115.1808809 -36.10531984,-115.180881 -36.10531218,-115.180881 -36.10530497,-115.1808809 -36.10529731,-115.1808809 -36.10528965,-115.1808808 -36.10528244,-115.1808808 -36.10527478,-115.1808807 -36.10526712,-115.1808807 -36.10525991,-115.1808806 -36.10525225,-115.1808806 -36.10524459,-115.1808805 -36.10523738,-115.1808805 -36.10522972,-115.1808804 -36.10522207,-115.1808804 -36.10521486,-115.1808804 -36.1052072,-115.1808803 -36.10519954,-115.1808803 -36.10519233,-115.1808802 -36.10518467,-115.1808802 -36.10517701,-115.1808801 -36.1051698,-115.1808801 -36.10516214,-115.18088 -36.10515448,-115.18088 -36.10514727,-115.1808799 -36.10513961,-115.1808799 -36.10513195,-115.1808798 -36.10512474,-115.1808798 -36.10511709,-115.1808798 -36.10510943,-115.1808797 -36.10510222,-115.1808797 -36.10509456,-115.1808796 -36.1050869,-115.1808796 -36.10507969,-115.1808795 -36.10507203,-115.1808795 -36.10506437,-115.1808794 -36.10505716,-115.1808794 -36.1050495,-115.1808793 -36.10504184,-115.1808793 -36.10503463,-115.1808792 -36.10502697,-115.1808792 -36.10501931,-115.1808792 -36.10501211,-115.1808791 -36.10500445,-115.1808791 -36.10499679,-115.180879 -36.10498958,-115.180879 -36.10498192,-115.1808789 -36.10497426,-115.1808789 -36.10496705,-115.1808788 -36.10495939,-115.1808788 -36.10495173,-115.1808787 -36.10494452,-115.1808787 -36.10493686,-115.1808786 -36.1049292,-115.1808786 -36.10492199,-115.1808786 -36.10491433,-115.1808785 -36.10490667,-115.1808785 -36.10489947,-115.1808784 -36.10489181,-115.1808784 -36.10488415,-115.1808783 -36.10487694,-115.1808783 -36.10486928,-115.1808782 -36.10486162,-115.1808782 -36.10485441,-115.1808781 -36.10484675,-115.1808781 -36.10483909,-115.1808781 -36.10483188,-115.180878 -36.10482422,-115.180878 -36.10481656,-115.1808779 -36.10480935,-115.1808779 -36.10480169,-115.1808778 -36.10479404,-115.1808778 -36.10478683,-115.1808777 -36.10477917,-115.1808777 -36.10477151,-115.1808776 -36.1047643,-115.1808776 -36.10475664,-115.1808775 -36.10474898,-115.1808775 -36.10474177,-115.1808775 -36.10473411,-115.1808774 -36.10472645,-115.1808774 -36.10471924,-115.1808773 -36.10471158,-115.1808773 -36.10470392,-115.1808772 -36.10469671,-115.1808772 -36.10468906,-115.1808771 -36.1046814,-115.1808771 -36.10467419,-115.180877 -36.10466653,-115.180877 -36.10465887,-115.1808769 -36.10465166,-115.1808769 -36.104644,-115.1808769 -36.10463634,-115.1808768 -36.10462913,-115.1808768 -36.10462147,-115.1808767 -36.10461381,-115.1808767 -36.1046066,-115.1808766 -36.10459894,-115.1808766 -36.10459128,-115.1808765 -36.10458408,-115.1808765 -36.10457642,-115.1808764 -36.10456876,-115.1808764 -36.10456155,-115.1808763 -36.10455389,-115.1808763 -36.10454623,-115.1808763 -36.10453902,-115.1808762 -36.10453136,-115.1808762 -36.1045237,-115.1808761 -36.10451649,-115.1808761 -36.10450883,-115.180876 -36.10450117,-115.180876 -36.10449396,-115.1808759 -36.1044863,-115.1808759 -36.10447864,-115.1808758 -36.10447144,-115.1808758 -36.10446378,-115.1808757 -36.10445612,-115.1808757 -36.10444891,-115.1808757 -36.10444125,-115.1808756 -36.10443359,-115.1808756 -36.10442638,-115.1808755 -36.10441872,-115.1808755 -36.10441106,-115.1808754 -36.10440385,-115.1808754 -36.10439619,-115.1808753 -36.10438853,-115.1808753 -36.10438132,-115.1808752 -36.10437366,-115.1808752 -36.10436601,-115.1808751 -36.1043588,-115.1808751 -36.10435114,-115.1808751 -36.10434348,-115.180875 -36.10433627,-115.180875 -36.10432861,-115.1808749 -36.10432095,-115.1808749 -36.10431374,-115.1808748 -36.10430608,-115.1808748 -36.10429842,-115.1808747 -36.10429121,-115.1808747 -36.10428355,-115.1808746 -36.10427589,-115.1808746 -36.10426868,-115.1808746 -36.10426103,-115.1808745 -36.10425337,-115.1808745 -36.10424616,-115.1808744 -36.1042385,-115.1808744 -36.10423084,-115.1808743 -36.10422363,-115.1808743 -36.10421597,-115.1808742 -36.10420831,-115.1808742 -36.1042011,-115.1808741 -36.10419344,-115.1808741 -36.10418578,-115.180874 -36.10417857,-115.180874 -36.10417091,-115.180874 -36.10416325,-115.1808739 -36.10415605,-115.1808739 -36.10414839,-115.1808738 -36.10414073,-115.1808738 -36.10413352,-115.1808737 -36.10412586,-115.1808737 -36.1041182,-115.1808736 -36.10411099,-115.1808736 -36.10410333,-115.1808735 -36.10409567,-115.1808735 -36.10408846,-115.1808734 -36.1040808,-115.1808734 -36.10407314,-115.1808734 -36.10406593,-115.1808733 -36.10405827,-115.1808733 -36.10405061,-115.1808732 -36.10404341,-115.1808732 -36.10403575,-115.1808731 -36.10402809,-115.1808731 -36.10402088,-115.180873 -36.10401322,-115.180873 -36.10400556,-115.1808729 -36.10399835,-115.1808729 -36.10399069,-115.1808728 -36.10398303,-115.1808728 -36.10397582,-115.1808728 -36.10396816,-115.1808727 -36.1039605,-115.1808727 -36.10395329,-115.1808726 -36.10394563,-115.1808726 -36.10393798,-115.1808725 -36.10393077,-115.1808725 -36.10392311,-115.1808724 -36.10391545,-115.1808724 -36.10390824,-115.1808723 -36.10390058,-115.1808723 -36.10389292,-115.1808722 -36.10388571,-115.1808722 -36.10387805,-115.1808722 -36.10387039,-115.1808721 -36.10386318,-115.1808721 -36.10385552,-115.180872 -36.10384786,-115.180872 -36.10384065,-115.1808719 -36.103833,-115.1808719 -36.10382534,-115.1808718 -36.10381813,-115.1808718 -36.10381047,-115.1808717 -36.10380281,-115.1808717 -36.1037956,-115.1808716 -36.10378794,-115.1808716 -36.10378028,-115.1808716 -36.10377307,-115.1808715 -36.10376541,-115.1808715 -36.10375775,-115.1808714 -36.10375054,-115.1808714 -36.10374288,-115.1808713 -36.10373522,-115.1808713 -36.10372802,-115.1808712 -36.10372036,-115.1808712 -36.1037127,-115.1808711 -36.10370549,-115.1808711 -36.10369783,-115.1808711 -36.10369017,-115.180871 -36.10368296,-115.180871 -36.1036753,-115.1808709 -36.10366764,-115.1808709 -36.10366043,-115.1808708 -36.10365277,-115.1808708 -36.10364511,-115.1808707 -36.1036379,-115.1808707 -36.10363024,-115.1808706 -36.10362258,-115.1808706 -36.10361538,-115.1808705 -36.10360772,-115.1808705 -36.10360006,-115.1808705 -36.10359285,-115.1808704 -36.10358519,-115.1808704 -36.10357753,-115.1808703 -36.10357032,-115.1808703 -36.10356266,-115.1808702 -36.103555,-115.1808702 -36.10354779,-115.1808701 -36.10354013,-115.1808701 -36.10353247,-115.18087 -36.10352526,-115.18087 -36.1035176,-115.1808699 -36.10350995,-115.1808699 -36.10350274,-115.1808699 -36.10349508,-115.1808698 -36.10348742,-115.1808698 -36.10348021,-115.1808697 -36.10347255,-115.1808697 -36.10346489,-115.1808696 -36.10345768,-115.1808696 -36.10345002,-115.1808695 -36.10344236,-115.1808695 -36.10343515,-115.1808694 -36.10342749,-115.1808694 -36.10341983,-115.1808693 -36.10341262,-115.1808693 -36.10340497,-115.1808693 -36.10339731,-115.1808692 -36.1033901,-115.1808692 -36.10338244,-115.1808691 -36.10337478,-115.1808691 -36.10336757,-115.180869 -36.10335991,-115.180869 -36.10335225,-115.1808689 -36.10334504,-115.1808689 -36.10333738,-115.1808688 -36.10332972,-115.1808688 -36.10332251,-115.1808687 -36.10331485,-115.1808687 -36.10330719,-115.1808687 -36.10329999,-115.1808686 -36.10329233,-115.1808686 -36.10328467,-115.1808685 -36.10327746,-115.1808685 -36.1032698,-115.1808684 -36.10326214,-115.1808684 -36.10325493,-115.1808683 -36.10324727,-115.1808683 -36.10323961,-115.1808682 -36.1032324,-115.1808682 -36.10322474,-115.1808681 -36.10321708,-115.1808681 -36.10320987,-115.1808681 -36.10320221,-115.180868 -36.10319455,-115.180868 -36.10318735,-115.1808679 -36.10317969,-115.1808679 -36.10317203,-115.1808678 -36.10316482,-115.1808678 -36.10315716,-115.1808677 -36.1031495,-115.1808677 -36.10314229,-115.1808676 -36.10313463,-115.1808676 -36.10312697,-115.1808675 -36.10311976,-115.1808675 -36.1031121,-115.1808675 -36.10310444,-115.1808674 -36.10309723,-115.1808674 -36.10308957,-115.1808673 -36.10308191,-115.1808673 -36.10307471,-115.1808672 -36.10306705,-115.1808672 -36.10305939,-115.1808671 -36.10305218,-115.1808671 -36.10304452,-115.180867 -36.10303686,-115.180867 -36.10302965,-115.180867 -36.10302199,-115.1808669 -36.10301433,-115.1808669 -36.10300712,-115.1808668 -36.10299946,-115.1808668 -36.1029918,-115.1808667 -36.10298459,-115.1808667 -36.10297693,-115.1808666 -36.10296928,-115.1808666 -36.10296207,-115.1808665 -36.10295441,-115.1808665 -36.10294675,-115.1808664 -36.10293954,-115.1808664 -36.10293188,-115.1808664 -36.10292422,-115.1808663 -36.10291701,-115.1808663 -36.10290935,-115.1808662 -36.10290169,-115.1808662 -36.10289448,-115.1808661 -36.10288682,-115.1808661 -36.10287916,-115.180866 -36.10287195,-115.180866 -36.1028643,-115.1808659 -36.10285664,-115.1808659 -36.10284943,-115.1808658 -36.10284177,-115.1808658 -36.10283411,-115.1808658 -36.1028269,-115.1808657 -36.10281924,-115.1808657 -36.10281158,-115.1808656 -36.10280437,-115.1808656 -36.10279671,-115.1808655 -36.10278905,-115.1808655 -36.10278184,-115.1808654 -36.10277418,-115.1808654 -36.10276652,-115.1808653 -36.10275932,-115.1808653 -36.10275166,-115.1808652 -36.102744,-115.1808652 -36.10273679,-115.1808652 -36.10272913,-115.1808651 -36.10272147,-115.1808651 -36.10271426,-115.180865 -36.1027066,-115.180865 -36.10269894,-115.1808649 -36.10269173,-115.1808649 -36.10268407,-115.1808648 -36.10267641,-115.1808648 -36.1026692,-115.1808647 -36.10266154,-115.1808647 -36.10265388,-115.1808646 -36.10264668,-115.1808646 -36.10263902,-115.1808646 -36.10263136,-115.1808645 -36.10262415,-115.1808645 -36.10261649,-115.1808644 -36.10260883,-115.1808644 -36.10260162,-115.1808643 -36.10259396,-115.1808643 -36.1025863,-115.1808642 -36.10257909,-115.1808642 -36.10257143,-115.1808641 -36.10256377,-115.1808641 -36.10255656,-115.180864 -36.1025489,-115.180864 -36.10254125,-115.180864 -36.10253404,-115.1808639 -36.10252638,-115.1808639 -36.10251872,-115.1808638 -36.10251151,-115.1808638 -36.10250385,-115.1808637 -36.10249619,-115.1808637 -36.10248898,-115.1808636 -36.10248132,-115.1808636 -36.10247366,-115.1808635 -36.10246645,-115.1808635 -36.10245879,-115.1808635 -36.10245113,-115.1808634 -36.10244392,-115.1808634 -36.10243627,-115.1808633 -36.10242861,-115.1808633 -36.1024214,-115.1808632 -36.10241374,-115.1808632 -36.10240608,-115.1808631 -36.10239887,-115.1808631 -36.10239121,-115.180863 -36.10238355,-115.180863 -36.10237634,-115.1808629 -36.10236868,-115.1808629 -36.10236102,-115.1808629 -36.10235381,-115.1808628 -36.10234615,-115.1808628 -36.10233849,-115.1808627 -36.10233129,-115.1808627 -36.10232363,-115.1808626 -36.10231597,-115.1808626 -36.10230876,-115.1808625 -36.1023011,-115.1808625 -36.10229344,-115.1808624 -36.10228623,-115.1808624 -36.10227857,-115.1808623 -36.10227091,-115.1808623 -36.1022637,-115.1808623 -36.10225604,-115.1808622 -36.10224838,-115.1808622 -36.10224117,-115.1808621 -36.10223351,-115.1808621 -36.10222585,-115.180862 -36.10221865,-115.180862 -36.10221099,-115.1808619 -36.10220333,-115.1808619 -36.10219612,-115.1808618 -36.10218846,-115.1808618 -36.1021808,-115.1808617 -36.10217359,-115.1808617 -36.10216593,-115.1808617 -36.10215827,-115.1808616 -36.10215106,-115.1808616 -36.1021434,-115.1808615 -36.10213574,-115.1808615 -36.10212853,-115.1808614 -36.10212087,-115.1808614 -36.10211321,-115.1808613 -36.10210601,-115.1808613 -36.10209835,-115.1808612 -36.10209069,-115.1808612 -36.10208348,-115.1808611 -36.10207582,-115.1808611 -36.10206816,-115.1808611 -36.10206095,-115.180861 -36.10205329,-115.180861 -36.10204563,-115.1808609 -36.10203842,-115.1808609 -36.10203076,-115.1808608 -36.1020231,-115.1808608 -36.10201589,-115.1808607 -36.10200823,-115.1808607 -36.10200058,-115.1808606 -36.10199337,-115.1808606 -36.10198571,-115.1808605 -36.10197805,-115.1808605 -36.10197084,-115.1808605 -36.10196318,-115.1808604 -36.10195552,-115.1808604 -36.10194831,-115.1808603 -36.10194065,-115.1808603 -36.10193299,-115.1808602 -36.10192578,-115.1808602 -36.10191812,-115.1808601 -36.10191046,-115.1808601 -36.10190325,-115.18086 -36.1018956,-115.18086 -36.10188794,-115.1808599 -36.10188073,-115.1808599 -36.10187307,-115.1808599 -36.10186541,-115.1808598 -36.1018582,-115.1808598 -36.10185054,-115.1808597 -36.10184288,-115.1808597 -36.10183567,-115.1808596 -36.10182801,-115.1808596 -36.10182035,-115.1808595 -36.10181314,-115.1808595 -36.10180548,-115.1808594 -36.10179782,-115.1808594 -36.10179062,-115.1808594 -36.10178296,-115.1808593 -36.1017753,-115.1808593 -36.10176809,-115.1808592 -36.10176043,-115.1808592 -36.10175277,-115.1808591 -36.10174556,-115.1808591 -36.1017379,-115.180859 -36.10173024,-115.180859 -36.10172303,-115.1808589 -36.10171537,-115.1808589 -36.10170771,-115.1808588 -36.1017005,-115.1808588 -36.10169284,-115.1808588 -36.10168518,-115.1808587 -36.10167798,-115.1808587 -36.10167032,-115.1808586 -36.10166266,-115.1808586 -36.10165545,-115.1808585 -36.10164779,-115.1808585 -36.10164013,-115.1808584 -36.10163292,-115.1808584 -36.10162526,-115.1808583 -36.1016176,-115.1808583 -36.10161039,-115.1808582 -36.10160273,-115.1808582 -36.10159507,-115.1808582 -36.10158786,-115.1808581 -36.1015802,-115.1808581 -36.10157254,-115.180858 -36.10156534,-115.180858 -36.10155768,-115.1808579 -36.10155002,-115.1808579 -36.10154281,-115.1808578 -36.10153515,-115.1808578 -36.10152749,-115.1808577 -36.10152028,-115.1808577 -36.10151262,-115.1808576 -36.10150496,-115.1808576 -36.10149775,-115.1808576 -36.10149009,-115.1808575 -36.10148243,-115.1808575 -36.10147522,-115.1808574 -36.10146756,-115.1808574 -36.10145991,-115.1808573 -36.1014527,-115.1808573 -36.10144504,-115.1808572 -36.10143738,-115.1808572 -36.10143017,-115.1808571 -36.10142251,-115.1808571 -36.10141485,-115.180857 -36.10140764,-115.180857 -36.10139998,-115.180857 -36.10139232,-115.1808569 -36.10138511,-115.1808569 -36.10137745,-115.1808568 -36.10136979,-115.1808568 -36.10136258,-115.1808567 -36.10135493,-115.1808567 -36.10134727,-115.1808566 -36.10134006,-115.1808566 -36.1013324,-115.1808565 -36.10132474,-115.1808565 -36.10131753,-115.1808564 -36.10130987,-115.1808564 -36.10130221,-115.1808564 -36.101295,-115.1808563 -36.10128734,-115.1808563 -36.10127968,-115.1808562 -36.10127247,-115.1808562 -36.10126481,-115.1808561 -36.10125715,-115.1808561 -36.10124995,-115.180856 -36.10124229,-115.180856 -36.10123463,-115.1808559 -36.10122742,-115.1808559 -36.10121976,-115.1808559 -36.1012121,-115.1808558 -36.10120489,-115.1808558 -36.10119723,-115.1808557 -36.10118957,-115.1808557 -36.10118236,-115.1808556 -36.1011747,-115.1808556 -36.10116704,-115.1808555 -36.10115983,-115.1808555 -36.10115217,-115.1808554 -36.10114451,-115.1808554 -36.10113731,-115.1808553 -36.10112965,-115.1808553 -36.10112199,-115.1808553 -36.10111478,-115.1808552 -36.10110712,-115.1808552 -36.10109946,-115.1808551 -36.10109225,-115.1808551 -36.10108459,-115.180855 -36.10107693,-115.180855 -36.10106972,-115.1808549 -36.10106206,-115.1808549 -36.1010544,-115.1808548 -36.10104719,-115.1808548 -36.10103953,-115.1808547 -36.10103187,-115.1808547 -36.10102467,-115.1808547 -36.10101701,-115.1808546 -36.10100935,-115.1808546 -36.10100214,-115.1808545 -36.10099448,-115.1808545 -36.10098682,-115.1808544 -36.10097961,-115.1808544 -36.10097195,-115.1808543 -36.10096429,-115.1808543 -36.10095708,-115.1808542 -36.10094942,-115.1808542 -36.10094176,-115.1808541 -36.10093455,-115.1808541 -36.10092689,-115.1808541 -36.10091924,-115.180854 -36.10091203,-115.180854 -36.10090437,-115.1808539 -36.10089671,-115.1808539 -36.1008895,-115.1808538 -36.10088184,-115.1808538 -36.10087418,-115.1808537 -36.10086697,-115.1808537 -36.10085931,-115.1808536 -36.10085165,-115.1808536 -36.10084444,-115.1808535 -36.10083678,-115.1808535 -36.10082912,-115.1808535 -36.10082191,-115.1808534 -36.10081426,-115.1808534 -36.1008066,-115.1808533 -36.10079939,-115.1808533 -36.10079173,-115.1808532 -36.10078407,-115.1808532 -36.10077686,-115.1808531 -36.1007692,-115.1808531 -36.10076154,-115.180853 -36.10075433,-115.180853 -36.10074667,-115.1808529 -36.10073901,-115.1808529 -36.1007318,-115.1808529 -36.10072414,-115.1808528 -36.10071648,-115.1808528 -36.10070928,-115.1808527 -36.10070162,-115.1808527 -36.10069396,-115.1808526 -36.10068675,-115.1808526 -36.10067909,-115.1808525 -36.10067143,-115.1808525 -36.10066422,-115.1808524 -36.10065656,-115.1808524 -36.1006489,-115.1808523 -36.10064169,-115.1808523 -36.10063403,-115.1808523 -36.10062637,-115.1808522 -36.10061916,-115.1808522 -36.1006115,-115.1808521 -36.10060384,-115.1808521 -36.10059664,-115.180852 -36.10058898,-115.180852 -36.10058132,-115.1808519 -36.10057411,-115.1808519 -36.10056645,-115.1808518 -36.10055879,-115.1808518 -36.10055158,-115.1808518 -36.10054392,-115.1808517 -36.10053626,-115.1808517 -36.10052905,-115.1808516 -36.10052139,-115.1808516 -36.10051373,-115.1808515 -36.10050652,-115.1808515 -36.10049886,-115.1808514 -36.1004912,-115.1808514 -36.100484,-115.1808513 -36.10047634,-115.1808513 -36.10046868,-115.1808512 -36.10046147,-115.1808512 -36.10045381,-115.1808512 -36.10044615,-115.1808511 -36.10043894,-115.1808511 -36.10043128,-115.180851 -36.10042362,-115.1808511 -36.10041641,-115.1808513 -36.10040876,-115.1808514 -36.1004011,-115.1808516 -36.10039389,-115.1808518 -36.10038623,-115.1808519 -36.10037857,-115.1808521 -36.10037136,-115.1808523 -36.10036371,-115.1808524 -36.10035605,-115.1808526 -36.10034884,-115.1808528 -36.10034118,-115.1808529 -36.10033352,-115.1808531 -36.10032632,-115.1808533 -36.10031866,-115.1808534 -36.100311,-115.1808536 -36.10030379,-115.1808538 -36.10029613,-115.1808539 -36.10028847,-115.1808541 -36.10028127,-115.1808543 -36.10027361,-115.1808544 -36.10026595,-115.1808546 -36.10025874,-115.1808548 -36.10025108,-115.1808549 -36.10024342,-115.1808551 -36.10023622,-115.1808552 -36.10022856,-115.1808554 -36.1002209,-115.1808556 -36.10021369,-115.1808557 -36.10020603,-115.1808559 -36.10019838,-115.1808561 -36.10019117,-115.1808562 -36.10018351,-115.1808564 -36.10017585,-115.1808566 -36.10016864,-115.1808567 -36.10016098,-115.1808569 -36.10015333,-115.1808571 -36.10014612,-115.1808572 -36.10013846,-115.1808574 -36.1001308,-115.1808576 -36.10012359,-115.1808577 -36.10011594,-115.1808579 -36.10010828,-115.1808581 -36.10010107,-115.1808582 -36.10009341,-115.1808584 -36.10008575,-115.1808586 -36.10007854,-115.1808587 -36.10007089,-115.1808589 -36.10006323,-115.1808591 -36.10005602,-115.1808592 -36.10004836,-115.1808594 -36.1000407,-115.1808596 -36.1000335,-115.1808597 -36.10002584,-115.1808599 -36.10001818,-115.1808601 -36.10001097,-115.1808602 -36.10000331,-115.1808604 -36.09999565,-115.1808606 -36.09998845,-115.1808607 -36.09998079,-115.1808609 -36.09997313,-115.180861 -36.09996592,-115.1808612 -36.09995826,-115.1808614 -36.09995061,-115.1808615 -36.0999434,-115.1808617 -36.09993574,-115.1808619 -36.09992808,-115.180862 -36.09992087,-115.1808622 -36.09991321,-115.1808624 -36.09990556,-115.1808625 -36.09989835,-115.1808627 -36.09989069,-115.1808629 -36.09988303,-115.180863 -36.09987582,-115.1808632 -36.09986817,-115.1808634 -36.09986051,-115.1808635 -36.0998533,-115.1808637 -36.09984564,-115.1808639 -36.09983798,-115.180864 -36.09983077,-115.1808642 -36.09982312,-115.1808644 -36.09981546,-115.1808645 -36.09980825,-115.1808647 -36.09980059,-115.1808648 -36.09979293,-115.180865 -36.09978573,-115.1808652 -36.09977807,-115.1808653 -36.09977041,-115.1808655 -36.0997632,-115.1808657 -36.09975554,-115.1808658 -36.09974788,-115.180866 -36.09974068,-115.1808662 -36.09973302,-115.1808663 -36.09972536,-115.1808665 -36.09971815,-115.1808667 -36.09971049,-115.1808668 -36.09970283,-115.180867 -36.09969563,-115.1808672 -36.09968797,-115.1808673 -36.09968031,-115.1808675 -36.0996731,-115.1808677 -36.09966544,-115.1808678 -36.09965779,-115.180868 -36.09965058,-115.1808682 -36.09964292,-115.1808683 -36.09963526,-115.1808685 -36.09962805,-115.1808687 -36.09962039,-115.1808688 -36.09961274,-115.180869 -36.09960553,-115.1808691 -36.09959787,-115.1808693 -36.09959021,-115.1808695 -36.099583,-115.1808696 -36.09957535,-115.1808698 -36.09956769,-115.18087 -36.09956048,-115.1808701 -36.09955282,-115.1808703 -36.09954516,-115.1808705 -36.09953795,-115.1808706 -36.0995303,-115.1808708 -36.09952264,-115.180871 -36.09951543,-115.1808711 -36.09950777,-115.1808713 -36.09950011,-115.1808715 -36.09949291,-115.1808716 -36.09948525,-115.1808718 -36.09947759,-115.180872 -36.09947038,-115.1808721 -36.09946272,-115.1808723 -36.09945506,-115.1808725 -36.09944786,-115.1808726 -36.0994402,-115.1808728 -36.09943254,-115.180873 -36.09942533,-115.1808731 -36.09941767,-115.1808733 -36.09941001,-115.1808735 -36.09940281,-115.1808736 -36.09939515,-115.1808738 -36.09938749,-115.180874 -36.09938028,-115.1808741 -36.09937262,-115.1808743 -36.09936497,-115.1808745 -36.09935776,-115.1808746 -36.0993501,-115.1808748 -36.09934244,-115.1808749 -36.09933523,-115.1808751 -36.09932757,-115.1808753 -36.09931992,-115.1808754 -36.09931271,-115.1808756 -36.09930505,-115.1808758 -36.09929739,-115.1808759 -36.09929018,-115.1808761 -36.09928253,-115.1808763 -36.09927487,-115.1808764 -36.09926766,-115.1808766 -36.09926,-115.1808768 -36.09925234,-115.1808769 -36.09924513,-115.1808771 -36.09923748,-115.1808773 -36.09922982,-115.1808774 -36.09922261,-115.1808776 -36.09921495,-115.1808778 -36.09920729,-115.1808779 -36.09920009,-115.1808781 -36.09919243,-115.1808783 -36.09918477,-115.1808784 -36.09917756,-115.1808786 -36.0991699,-115.1808788 -36.09916224,-115.1808789 -36.09915504,-115.1808791 -36.09914738,-115.1808792 -36.09913972,-115.1808794 -36.09913251,-115.1808796 -36.09912485,-115.1808797 -36.09911719,-115.1808799 -36.09910999,-115.1808801 -36.09910233,-115.1808802 -36.09909467,-115.1808804 -36.09908746,-115.1808806 -36.0990798,-115.1808807 -36.09907215,-115.1808809 -36.09906494,-115.1808811 -36.09905728,-115.1808812 -36.09904962,-115.1808814 -36.09904241,-115.1808816 -36.09903475,-115.1808817 -36.0990271,-115.1808819 -36.09901989,-115.1808821 -36.09901223,-115.1808822 -36.09900457,-115.1808824 -36.09899736,-115.1808826 -36.09898971,-115.1808827 -36.09898205,-115.1808829 -36.09897484,-115.180883 -36.09896718,-115.1808832 -36.09895952,-115.1808834 -36.09895231,-115.1808835 -36.09894466,-115.1808837 -36.098937,-115.1808839 -36.09892979,-115.180884 -36.09892213,-115.1808842 -36.09891447,-115.1808844 -36.09890727,-115.1808845 -36.09889961,-115.1808847 -36.09889195,-115.1808849 -36.09888474,-115.180885 -36.09887708,-115.1808852 -36.09886942,-115.1808854 -36.09886222,-115.1808855 -36.09885456,-115.1808857 -36.0988469,-115.1808859 -36.09883969,-115.180886 -36.09883203,-115.1808862 -36.09882437,-115.1808864 -36.09881717,-115.1808865 -36.09880951,-115.1808867 -36.09880185,-115.1808869 -36.09879464,-115.180887 -36.09878698,-115.1808872 -36.09877933,-115.1808874 -36.09877212,-115.1808875 -36.09876446,-115.1808877 -36.0987568,-115.1808879 -36.09874959,-115.180888 -36.09874193,-115.1808882 -36.09873428,-115.1808884 -36.09872707,-115.1808885 -36.09871941,-115.1808887 -36.09871175,-115.1808888 -36.09870454,-115.180889 -36.09869689,-115.1808892 -36.09868923,-115.1808893 -36.09868202,-115.1808895 -36.09867436,-115.1808897 -36.0986667,-115.1808898 -36.09865949,-115.18089 -36.09865184,-115.1808902 -36.09864418,-115.1808903 -36.09863697,-115.1808905 -36.09862931,-115.1808907 -36.09862165,-115.1808908 -36.09861445,-115.180891 -36.09860679,-115.1808912 -36.09859913,-115.1808913 -36.09859192,-115.1808915 -36.09858426,-115.1808917 -36.0985766,-115.1808918 -36.0985694,-115.180892 -36.09856174,-115.1808922 -36.09855408,-115.1808923 -36.09854687,-115.1808925 -36.09853921,-115.1808927 -36.09853155,-115.1808928 -36.09852435,-115.180893 -36.09851669,-115.1808931 -36.09850903,-115.1808933 -36.09850182,-115.1808935 -36.09849416,-115.1808936 -36.09848651,-115.1808938 -36.0984793,-115.180894 -36.09847164,-115.1808941 -36.09846398,-115.1808943 -36.09845677,-115.1808945 -36.09844911,-115.1808946 -36.09844146,-115.1808948 -36.09843425,-115.180895 -36.09842659,-115.1808951 -36.09841893,-115.1808953 -36.09841172,-115.1808955 -36.09840407,-115.1808956 -36.09839641,-115.1808958 -36.0983892,-115.180896 -36.09838154,-115.1808961 -36.09837388,-115.1808963 -36.09836667,-115.1808965 -36.09835902,-115.1808966 -36.09835136,-115.1808968 -36.09834415,-115.1808969 -36.09833649,-115.1808971 -36.09832883,-115.1808973 -36.09832163,-115.1808974 -36.09831397,-115.1808976 -36.09830631,-115.1808978 -36.0982991,-115.1808979 -36.09829144,-115.1808981 -36.09828378,-115.1808983 -36.09827658,-115.1808984 -36.09826892,-115.1808986 -36.09826126,-115.1808988 -36.09825405,-115.1808989 -36.09824639,-115.1808991 -36.09823873,-115.1808993 -36.09823153,-115.1808994 -36.09822387,-115.1808996 -36.09821621,-115.1808998 -36.098209,-115.1808999 -36.09820134,-115.1809001 -36.09819369,-115.1809003 -36.09818648,-115.1809004 -36.09817882,-115.1809006 -36.09817116,-115.1809008 -36.09816395,-115.1809009 -36.09815629,-115.1809011 -36.09814864,-115.1809013 -36.09814143,-115.1809014 -36.09813377,-115.1809016 -36.09812611,-115.1809018 -36.0981189,-115.1809019 -36.09811125,-115.1809019 -36.09810359,-115.1809018 -36.09809638,-115.1809016 -36.09808872,-115.1809015 -36.09808106,-115.1809014 -36.09807385,-115.1809012 -36.09806619,-115.1809011 -36.09805854,-115.1809009 -36.09805133,-115.1809008 -36.09804367,-115.1809006 -36.09803601,-115.1809005 -36.0980288,-115.1809004 -36.09802114,-115.1809002 -36.09801348,-115.1809001 -36.09800628,-115.1808999 -36.09799862,-115.1808998 -36.09799096,-115.1808996 -36.09798375,-115.1808995 -36.09797609,-115.1808993 -36.09796843,-115.1808992 -36.09796123,-115.1808991 -36.09795357,-115.1808989 -36.09794591,-115.1808988 -36.0979387,-115.1808986 -36.09793104,-115.1808985 -36.09792338,-115.1808983 -36.09791617,-115.1808982 -36.09790852,-115.180898 -36.09790086,-115.1808979 -36.09789365,-115.1808978 -36.09788599,-115.1808976 -36.09787833,-115.1808975 -36.09787112,-115.1808973 -36.09786346,-115.1808972 -36.09785581,-115.180897 -36.0978486,-115.1808969 -36.09784094,-115.1808968 -36.09783328,-115.1808966 -36.09782607,-115.1808965 -36.09781841,-115.1808963 -36.09781075,-115.1808962 -36.09780355,-115.180896 -36.09779589,-115.1808959 -36.09778823,-115.1808957 -36.09778102,-115.1808956 -36.09777336,-115.1808955 -36.0977657,-115.1808953 -36.0977585,-115.1808952 -36.09775084,-115.180895 -36.09774318,-115.1808949 -36.09773597,-115.1808947 -36.09772831,-115.1808946 -36.09772065,-115.1808945 -36.09771344,-115.1808943 -36.09770579,-115.1808942 -36.09769813,-115.180894 -36.09769092,-115.1808941 -36.09768326,-115.1808942 -36.0976756,-115.1808943 -36.09766839,-115.1808944 -36.09766073,-115.1808945 -36.09765307,-115.1808946 -36.09764587,-115.1808947 -36.09763821,-115.1808948 -36.09763055,-115.1808949 -36.09762334,-115.180895 -36.09761568,-115.1808951 -36.09760802,-115.1808952 -36.09760081,-115.1808953 -36.09759315,-115.1808954 -36.09758549,-115.1808955 -36.09757828,-115.1808956 -36.09757063,-115.1808957 -36.09756297,-115.1808958 -36.09755576,-115.1808959 -36.0975481,-115.180896 -36.09754044,-115.1808961 -36.09753323,-115.1808962 -36.09752557,-115.1808963 -36.09751791,-115.1808964 -36.0975107,-115.1808965 -36.09750304,-115.1808966 -36.09749539,-115.1808967 -36.09748818,-115.1808968 -36.09748052,-115.1808969 -36.09747286,-115.180897 -36.09746565,-115.1808971 -36.09745799,-115.1808973 -36.09745033,-115.1808974 -36.09744312,-115.1808975 -36.09743546,-115.1808976 -36.09742781,-115.1808977 -36.0974206,-115.1808978 -36.09741294,-115.1808979 -36.09740528,-115.180898 -36.09739807,-115.1808981 -36.09739041,-115.1808982 -36.09738275,-115.1808983 -36.09737554,-115.1808984 -36.09736788,-115.1808985 -36.09736022,-115.1808986 -36.09735302,-115.1808987 -36.09734536,-115.1808988 -36.0973377,-115.1808989 -36.09733049,-115.180899 -36.09732283,-115.1808991 -36.09731517,-115.1808992 -36.09730796,-115.1808993 -36.0973003,-115.1808994 -36.09729264,-115.1808995 -36.09728544,-115.1808996 -36.09727778,-115.1808997 -36.09727012,-115.1808998 -36.09726291,-115.1808999 -36.09725525,-115.1809 -36.09724759,-115.1809001 -36.09724038,-115.1809002 -36.09723272,-115.1809003 -36.09722506,-115.1809004 -36.09721785,-115.1809005 -36.0972102,-115.1809006 -36.09720254,-115.1809007 -36.09719533,-115.1809008 -36.09718767,-115.1809009 -36.09718001,-115.180901 -36.0971728,-115.1809011 -36.09716514,-115.1809012 -36.09715748,-115.1809013 -36.09715027,-115.1809014 -36.09714262,-115.1809015 -36.09713496,-115.1809016 -36.09712775,-115.1809017 -36.09712009,-115.1809018 -36.09711243,-115.180902 -36.09710522,-115.1809021 -36.09709756,-115.1809022 -36.0970899,-115.1809023 -36.09708269,-115.1809024 -36.09707503,-115.1809025 -36.09706738,-115.1809026 -36.09706017,-115.1809027 -36.09705251,-115.1809028 -36.09704485,-115.1809029 -36.09703764,-115.180903 -36.09702998,-115.1809031 -36.09702232,-115.1809032 -36.09701511,-115.1809033 -36.09700745,-115.1809034 -36.09699979,-115.1809035 -36.09699259,-115.1809036 -36.09698493,-115.1809037 -36.09697727,-115.1809038 -36.09697006,-115.1809039 -36.0969624,-115.180904 -36.09695474,-115.1809041 -36.09694753,-115.1809042 -36.09693987,-115.1809043 -36.09693221,-115.1809044 -36.09692501,-115.1809045 -36.09691735,-115.1809046 -36.09690969,-115.1809047 -36.09690248,-115.1809048 -36.09689482,-115.1809049 -36.09688716,-115.180905 -36.09687995,-115.1809051 -36.09687229,-115.1809052 -36.09686463,-115.1809053 -36.09685743,-115.1809054 -36.09684977,-115.1809055 -36.09684211,-115.1809056 -36.0968349,-115.1809057 -36.09682724,-115.1809058 -36.09681958,-115.1809059 -36.09681237,-115.180906 -36.09680471,-115.1809061 -36.09679705,-115.1809062 -36.09678984,-115.1809063 -36.09678219,-115.1809064 -36.09677453,-115.1809066 -36.09676732,-115.1809066 -36.09675966,-115.1809068 -36.096752,-115.1809069 -36.09674479,-115.180907 -36.09673713,-115.1809071 -36.09672947,-115.1809072 -36.09672226,-115.1809073 -36.0967146,-115.1809074 -36.09670695,-115.1809075 -36.09669974,-115.1809076 -36.09669208,-115.1809077 -36.09668442,-115.1809078 -36.09667721,-115.1809079 -36.09666955,-115.180908 -36.09666189,-115.1809081 -36.09665468,-115.1809082 -36.09664702,-115.1809083 -36.09663937,-115.1809084 -36.09663216,-115.1809085 -36.0966245,-115.1809086 -36.09661684,-115.1809087 -36.09660963,-115.1809088 -36.09660197,-115.1809089 -36.09659431,-115.180909 -36.0965871,-115.1809091 -36.09657944,-115.1809092 -36.09657178,-115.1809093 -36.09656458,-115.1809094 -36.09655692,-115.1809095 -36.09654926,-115.1809096 -36.09654205,-115.1809097 -36.09653439,-115.1809098 -36.09652673,-115.1809099 -36.09651952,-115.18091 -36.09651186,-115.1809101 -36.0965042,-115.1809102 -36.096497,-115.1809103 -36.09648934,-115.1809104 -36.09648168,-115.1809105 -36.09647447,-115.1809106 -36.09646681,-115.1809107 -36.09645915,-115.1809108 -36.09645194,-115.1809109 -36.09644428,-115.180911 -36.09643662,-115.1809111 -36.09642941,-115.1809112 -36.09642176,-115.1809114 -36.0964141,-115.1809115 -36.09640689,-115.1809116 -36.09639923,-115.1809117 -36.09639157,-115.1809118 -36.09638436,-115.1809119 -36.0963767,-115.180912 -36.09636904,-115.1809121 -36.09636183,-115.1809122 -36.09635418,-115.1809123 -36.09634652,-115.1809124 -36.09633931,-115.1809125 -36.09633165,-115.1809126 -36.09632399,-115.1809127 -36.09631678,-115.1809128 -36.09630912,-115.1809129 -36.09630146,-115.180913 -36.09629425,-115.1809131 -36.09628659,-115.1809132 -36.09627894,-115.1809133 -36.09627173,-115.1809134 -36.09626407,-115.1809135 -36.09625641,-115.1809136 -36.0962492,-115.1809137 -36.09624154,-115.1809138 -36.09623388,-115.1809139 -36.09622667,-115.180914 -36.09621901,-115.1809141 -36.09621135,-115.1809142 -36.09620415,-115.1809143 -36.09619649,-115.1809144 -36.09618883,-115.1809145 -36.09618162,-115.1809146 -36.09617396,-115.1809147 -36.0961663,-115.1809148 -36.09615909,-115.1809149 -36.09615143,-115.180915 -36.09614377,-115.1809151 -36.09613657,-115.1809152 -36.09612891,-115.1809153 -36.09612125,-115.1809154 -36.09611404,-115.1809155 -36.09610638,-115.1809156 -36.09609872,-115.1809157 -36.09609151,-115.1809158 -36.09608385,-115.1809159 -36.09607619,-115.1809161 -36.09606899,-115.1809161 -36.09606133,-115.1809163 -36.09605367,-115.1809164 -36.09604646,-115.1809165 -36.0960388,-115.1809166 -36.09603114,-115.1809167 -36.09602393,-115.1809168 -36.09601627,-115.1809169 -36.09600861,-115.180917 -36.0960014,-115.1809171 -36.09599375,-115.1809172 -36.09598609,-115.1809173 -36.09597888,-115.1809174 -36.09597122,-115.1809175 -36.09596356,-115.1809176 -36.09595635,-115.1809177 -36.09594869,-115.1809178 -36.09594103,-115.1809179 -36.09593382,-115.180918 -36.09592616,-115.180918 -36.0959185,-115.1809179 -36.0959113,-115.1809179 -36.09590364,-115.1809179 -36.09589598,-115.1809178 -36.09588877,-115.1809178 -36.09588111,-115.1809177 -36.09587345,-115.1809177 -36.09586624,-115.1809177 -36.09585858,-115.1809176 -36.09585092,-115.1809176 -36.09584371,-115.1809176 -36.09583605,-115.1809175 -36.09582839,-115.1809175 -36.09582118,-115.1809174 -36.09581352,-115.1809174 -36.09580586,-115.1809174 -36.09579866,-115.1809173 -36.095791,-115.1809173 -36.09578334,-115.1809172 -36.09577613,-115.1809172 -36.09576847,-115.1809172 -36.09576081,-115.1809171 -36.0957536,-115.1809171 -36.09574594,-115.1809171 -36.09573828,-115.180917 -36.09573107,-115.180917 -36.09572341,-115.1809169 -36.09571575,-115.1809169 -36.09570854,-115.1809169 -36.09570088,-115.1809168 -36.09569322,-115.1809168 -36.09568602,-115.1809168 -36.09567836,-115.1809167 -36.0956707,-115.1809167 -36.09566349,-115.1809166 -36.09565583,-115.1809166 -36.09564817,-115.1809166 -36.09564096,-115.1809165 -36.0956333,-115.1809165 -36.09562564,-115.1809165 -36.09561843,-115.1809164 -36.09561077,-115.1809164 -36.09560311,-115.1809163 -36.0955959,-115.1809163 -36.09558824,-115.1809163 -36.09558058,-115.1809162 -36.09557338,-115.1809162 -36.09556572,-115.1809162 -36.09555806,-115.1809161 -36.09555085,-115.1809161 -36.09554319,-115.180916 -36.09553553,-115.180916 -36.09552832,-115.180916 -36.09552066,-115.1809159 -36.095513,-115.1809159 -36.09550579,-115.1809159 -36.09549813,-115.1809158 -36.09549047,-115.1809158 -36.09548326,-115.1809157 -36.0954756,-115.1809157 -36.09546794,-115.1809157 -36.09546073,-115.1809156 -36.09545308,-115.1809156 -36.09544542,-115.1809155 -36.09543821,-115.1809155 -36.09543055,-115.1809155 -36.09542289,-115.1809154 -36.09541568,-115.1809154 -36.09540802,-115.1809154 -36.09540036,-115.1809153 -36.09539315,-115.1809153 -36.09538549,-115.1809152 -36.09537783,-115.1809152 -36.09537062,-115.1809152 -36.09536296,-115.1809151 -36.0953553,-115.1809151 -36.09534809,-115.1809151 -36.09534044,-115.180915 -36.09533278,-115.180915 -36.09532557,-115.1809149 -36.09531791,-115.1809149 -36.09531025,-115.1809149 -36.09530304,-115.1809148 -36.09529538,-115.1809148 -36.09528772,-115.1809148 -36.09528051,-115.1809147 -36.09527285,-115.1809147 -36.09526519,-115.1809146 -36.09525798,-115.1809146 -36.09525032,-115.1809146 -36.09524266,-115.1809145 -36.09523545,-115.1809145 -36.09522779,-115.1809145 -36.09522014,-115.1809144 -36.09521293,-115.1809144 -36.09520527,-115.1809143 -36.09519761,-115.1809143 -36.0951904,-115.1809143 -36.09518274,-115.1809142 -36.09517508,-115.1809142 -36.09516787,-115.1809142 -36.09516021,-115.1809141 -36.09515255,-115.1809141 -36.09514534,-115.180914 -36.09513768,-115.180914 -36.09513002,-115.180914 -36.09512281,-115.1809139 -36.09511515,-115.1809139 -36.09510749,-115.1809139 -36.09510029,-115.1809138 -36.09509263,-115.1809138 -36.09508497,-115.1809137 -36.09507776,-115.1809137 -36.0950701,-115.1809137 -36.09506244,-115.1809136 -36.09505523,-115.1809136 -36.09504757,-115.1809135 -36.09503991,-115.1809135 -36.0950327,-115.1809135 -36.09502504,-115.1809134 -36.09501738,-115.1809134 -36.09501017,-115.1809134 -36.09500251,-115.1809133 -36.09499485,-115.1809133 -36.09498765,-115.1809132 -36.09497999,-115.1809132 -36.09497233,-115.1809132 -36.09496512,-115.1809131 -36.09495746,-115.1809131 -36.0949498,-115.1809131 -36.09494259,-115.180913 -36.09493493,-115.180913 -36.09492727,-115.1809129 -36.09492006,-115.1809129 -36.0949124,-115.1809129 -36.09490474,-115.1809128 -36.09489753,-115.1809128 -36.09488987,-115.1809128 -36.09488221,-115.1809127 -36.09487501,-115.1809127 -36.09486735,-115.1809126 -36.09485969,-115.1809126 -36.09485248,-115.1809126 -36.09484482,-115.1809125 -36.09483716,-115.1809125 -36.09482995,-115.1809125 -36.09482229,-115.1809124 -36.09481463,-115.1809124 -36.09480742,-115.1809123 -36.09479976,-115.1809123 -36.0947921,-115.1809123 -36.09478489,-115.1809122 -36.09477723,-115.1809122 -36.09476957,-115.1809122 -36.09476237,-115.1809121 -36.09475471,-115.1809121 -36.09474705,-115.180912 -36.09473984,-115.180912 -36.09473218,-115.180912 -36.09472452,-115.1809119 -36.09471731,-115.1809119 -36.09470965,-115.1809119 -36.09470199,-115.1809118 -36.09469478,-115.1809118 -36.09468712,-115.1809117 -36.09467946,-115.1809117 -36.09467225,-115.1809117 -36.09466459,-115.1809116 -36.09465693,-115.1809116 -36.09464972,-115.1809116 -36.09464207,-115.1809115 -36.09463441,-115.1809115 -36.0946272,-115.1809114 -36.09461954,-115.1809114 -36.09461188,-115.1809114 -36.09460467,-115.1809113 -36.09459701,-115.1809113 -36.09458935,-115.1809112 -36.09458214,-115.1809112 -36.09457448,-115.1809112 -36.09456682,-115.1809111 -36.09455961,-115.1809111 -36.09455195,-115.1809111 -36.09454429,-115.180911 -36.09453708,-115.180911 -36.09452942,-115.1809109 -36.09452177,-115.1809109 -36.09451456,-115.1809109 -36.0945069,-115.1809108 -36.09449924,-115.1809108 -36.09449203,-115.1809108 -36.09448437,-115.1809107 -36.09447671,-115.1809107 -36.0944695,-115.1809106 -36.09446184,-115.1809106 -36.09445418,-115.1809106 -36.09444697,-115.1809105 -36.09443931,-115.1809105 -36.09443165,-115.1809105 -36.09442444,-115.1809104 -36.09441678,-115.1809104 -36.09440913,-115.1809103 -36.09440192,-115.1809103 -36.09439426,-115.1809103 -36.0943866,-115.1809102 -36.09437939,-115.1809102 -36.09437173,-115.1809102 -36.09436407,-115.1809101 -36.09435686,-115.1809101 -36.0943492,-115.18091 -36.09434154,-115.18091 -36.09433433,-115.18091 -36.09432667,-115.1809099 -36.09431901,-115.1809099 -36.0943118,-115.1809099 -36.09430414,-115.1809098 -36.09429648,-115.1809098 -36.09428928,-115.1809097 -36.09428162,-115.1809097 -36.09427396,-115.1809097 -36.09426675,-115.1809096 -36.09425909,-115.1809096 -36.09425143,-115.1809095 -36.09424422,-115.1809095 -36.09423656,-115.1809095 -36.0942289,-115.1809094 -36.09422169,-115.1809094 -36.09421403,-115.1809094 -36.09420637,-115.1809093 -36.09419916,-115.1809093 -36.0941915,-115.1809092 -36.09418384,-115.1809092 -36.09417664,-115.1809092 -36.09416898,-115.1809091 -36.09416132,-115.1809091 -36.09415411,-115.1809091 -36.09414645,-115.180909 -36.09413879,-115.180909 -36.09413158,-115.1809089 -36.09412392,-115.1809089 -36.09411626,-115.1809089 -36.09410905,-115.1809088 -36.09410139,-115.1809088 -36.09409373,-115.1809088 -36.09408652,-115.1809087 -36.09407886,-115.1809087 -36.0940712,-115.1809086 -36.094064,-115.1809086 -36.09405634,-115.1809086 -36.09404868,-115.1809085 -36.09404147,-115.1809085 -36.09403381,-115.1809085 -36.09402615,-115.1809084 -36.09401894,-115.1809084 -36.09401128,-115.1809083 -36.09400362,-115.1809083 -36.09399641,-115.1809083 -36.09398875,-115.1809082 -36.09398109,-115.1809082 -36.09397388,-115.1809082 -36.09396622,-115.1809081 -36.09395856,-115.1809081 -36.09395135,-115.180908 -36.0939437,-115.180908 -36.09393604,-115.180908 -36.09392883,-115.1809079 -36.09392117,-115.1809079 -36.09391351,-115.1809078 -36.0939063,-115.1809078 -36.09389864,-115.1809078 -36.09389098,-115.1809077 -36.09388377,-115.1809077 -36.09387611,-115.1809077 -36.09386845,-115.1809076 -36.09386124,-115.1809076 -36.09385358,-115.1809075 -36.09384592,-115.1809075 -36.09383871,-115.1809075 -36.09383105,-115.1809074 -36.0938234,-115.1809074 -36.09381619,-115.1809074 -36.09380853,-115.1809073 -36.09380087,-115.1809073 -36.09379366,-115.1809072 -36.093786,-115.1809072 -36.09377834,-115.1809072 -36.09377113,-115.1809071 -36.09376347,-115.1809071 -36.09375581,-115.1809071 -36.0937486,-115.180907 -36.09374094,-115.180907 -36.09373328,-115.1809069 -36.09372607,-115.1809069 -36.09371841,-115.1809069 -36.09371076,-115.1809068 -36.09370355,-115.1809068 -36.09369589,-115.1809068 -36.09368823,-115.1809067 -36.09368102,-115.1809067 -36.09367336,-115.1809066 -36.0936657,-115.1809066 -36.09365849,-115.1809066 -36.09365083,-115.1809065 -36.09364317,-115.1809065 -36.09363596,-115.1809065 -36.0936283,-115.1809064 -36.09362064,-115.1809064 -36.09361343,-115.1809063 -36.09360577,-115.1809063 -36.09359811,-115.1809063 -36.09359091,-115.1809062 -36.09358325,-115.1809062 -36.09357559,-115.1809062 -36.09356838,-115.1809061 -36.09356072,-115.1809061 -36.09355306,-115.180906 -36.09354585,-115.180906 -36.09353819,-115.180906 -36.09353053,-115.1809059 -36.09352332,-115.1809059 -36.09351566,-115.1809059 -36.093508,-115.1809058 -36.09350079,-115.1809058 -36.09349313,-115.1809057 -36.09348547,-115.1809057 -36.09347827,-115.1809057 -36.09347061,-115.1809056 -36.09346295,-115.1809056 -36.09345574,-115.1809055 -36.09344808,-115.1809055 -36.09344042,-115.1809055 -36.09343321,-115.1809054 -36.09342555,-115.1809054 -36.09341789,-115.1809054 -36.09341068,-115.1809053 -36.09340302,-115.1809053 -36.09339536,-115.1809052 -36.09338815,-115.1809052 -36.09338049,-115.1809052 -36.09337283,-115.1809051 -36.09336563,-115.1809051 -36.09335797,-115.1809051 -36.09335031,-115.180905 -36.0933431,-115.180905 -36.09333544,-115.1809049 -36.09332778,-115.1809049 -36.09332057,-115.1809049 -36.09331291,-115.1809048 -36.09330525,-115.1809048 -36.09329804,-115.1809048 -36.09329038,-115.1809047 -36.09328272,-115.1809047 -36.09327551,-115.1809046 -36.09326785,-115.1809046 -36.09326019,-115.1809046 -36.09325298,-115.1809045 -36.09324533,-115.1809045 -36.09323767,-115.1809045 -36.09323046,-115.1809044 -36.0932228,-115.1809044 -36.09321514,-115.1809043 -36.09320793,-115.1809043 -36.09320027,-115.1809043 -36.09319261,-115.1809042 -36.0931854,-115.1809042 -36.09317774,-115.1809042 -36.09317008,-115.1809041 -36.09316287,-115.1809041 -36.09315521,-115.180904 -36.09314755,-115.180904 -36.09314034,-115.180904 -36.09313268,-115.1809039 -36.09312503,-115.1809039 -36.09311782,-115.1809039 -36.09311016,-115.1809038 -36.0931025,-115.1809038 -36.09309529,-115.1809037 -36.09308763,-115.1809037 -36.09307997,-115.1809037 -36.09307276,-115.1809036 -36.0930651,-115.1809036 -36.09305744,-115.1809035 -36.09305023,-115.1809035 -36.09304257,-115.1809035 -36.09303491,-115.1809034 -36.0930277,-115.1809034 -36.09302004,-115.1809034 -36.09301238,-115.1809033 -36.09300518,-115.1809033 -36.09299752,-115.1809032 -36.09298986,-115.1809032 -36.09298265,-115.1809032 -36.09297499,-115.1809031 -36.09296733,-115.1809031 -36.09296012,-115.1809031 -36.09295246,-115.180903 -36.0929448,-115.180903 -36.09293759,-115.1809029 -36.09292993,-115.1809029 -36.09292227,-115.1809029 -36.09291506,-115.1809028 -36.0929074,-115.1809028 -36.09289974,-115.1809028 -36.09289254,-115.1809027 -36.09288488,-115.1809027 -36.09287722,-115.1809026 -36.09287001,-115.1809026 -36.09286235,-115.1809026 -36.09285469,-115.1809025 -36.09284748,-115.1809025 -36.09283982,-115.1809025 -36.09283216,-115.1809024 -36.09282495,-115.1809024 -36.09281729,-115.1809023 -36.09280963,-115.1809023 -36.09280242,-115.1809023 -36.09279476,-115.1809022 -36.0927871,-115.1809022 -36.0927799,-115.1809022 -36.09277224,-115.1809021 -36.09276458,-115.1809021 -36.09275737,-115.180902 -36.09274971,-115.180902 -36.09274205,-115.180902 -36.09273484,-115.1809019 -36.09272718,-115.1809019 -36.09271952,-115.1809018 -36.09271231,-115.1809018 -36.09270465,-115.1809018 -36.09269699,-115.1809017 -36.09268978,-115.1809017 -36.09268212,-115.1809017 -36.09267446,-115.1809016 -36.09266725,-115.1809016 -36.0926596,-115.1809015 -36.09265194,-115.1809015 -36.09264473,-115.1809015 -36.09263707,-115.1809014 -36.09262941,-115.1809014 -36.0926222,-115.1809014 -36.09261454,-115.1809013 -36.09260688,-115.1809013 -36.09259967,-115.1809012 -36.09259201,-115.1809012 -36.09258435,-115.1809012 -36.09257714,-115.1809011 -36.09256948,-115.1809011 -36.09256182,-115.1809011 -36.09255461,-115.180901 -36.09254695,-115.180901 -36.0925393,-115.1809009 -36.09253209,-115.1809009 -36.09252443,-115.1809009 -36.09251677,-115.1809008 -36.09250956,-115.1809008 -36.0925019,-115.1809008 -36.09249424,-115.1809007 -36.09248703,-115.1809007 -36.09247937,-115.1809006 -36.09247171,-115.1809006 -36.0924645,-115.1809006 -36.09245684,-115.1809005 -36.09244918,-115.1809005 -36.09244197,-115.1809005 -36.09243431,-115.1809004 -36.09242665,-115.1809004 -36.09241945,-115.1809003 -36.09241179,-115.1809003 -36.09240413,-115.1809003 -36.09239692,-115.1809002 -36.09238926,-115.1809002 -36.0923816,-115.1809002 -36.09237439,-115.1809001 -36.09236673,-115.1809001 -36.09235907,-115.1809 -36.09235186,-115.1809 -36.0923442,-115.1809 -36.09233654,-115.1808999 -36.09232933,-115.1808999 -36.09232167,-115.1808998 -36.09231401,-115.1808998 -36.09230681,-115.1808998 -36.09229915,-115.1808997 -36.09229149,-115.1808997 -36.09228428,-115.1808997 -36.09227662,-115.1808996 -36.09226896,-115.1808996 -36.09226175,-115.1808995 -36.09225409,-115.1808995 -36.09224643,-115.1808995 -36.09223922,-115.1808994 -36.09223156,-115.1808994 -36.0922239,-115.1808994 -36.09221669,-115.1808993 -36.09220903,-115.1808993 -36.09220137,-115.1808992 -36.09219417,-115.1808992 -36.09218651,-115.1808992 -36.09217885,-115.1808991 -36.09217164,-115.1808991 -36.09216398,-115.1808991 -36.09215632,-115.180899 -36.09214911,-115.180899 -36.09214145,-115.1808989 -36.09213379,-115.1808989 -36.09212658,-115.1808989 -36.09211892,-115.1808988 -36.09211126,-115.1808988 -36.09210405,-115.1808988 -36.09209639,-115.1808987 -36.09208873,-115.1808987 -36.09208152,-115.1808986 -36.09207387,-115.1808986 -36.09206621,-115.1808986 -36.092059,-115.1808985 -36.09205134,-115.1808985 -36.09204368,-115.1808985 -36.09203647,-115.1808984 -36.09202881,-115.1808984 -36.09202115,-115.1808983 -36.09201394,-115.1808983 -36.09200628,-115.1808983 -36.09199862,-115.1808982 -36.09199141,-115.1808982 -36.09198375,-115.1808982 -36.09197609,-115.1808981 -36.09196888,-115.1808981 -36.09196122,-115.180898 -36.09195357,-115.180898 -36.09194636,-115.180898 -36.0919387,-115.1808979 -36.09193104,-115.1808979 -36.09192383,-115.1808978 -36.09191617,-115.1808978 -36.09190851,-115.1808978 -36.0919013,-115.1808977 -36.09189364,-115.1808977 -36.09188598,-115.1808977 -36.09187877,-115.1808976 -36.09187111,-115.1808976 -36.09186345,-115.1808975 -36.09185624,-115.1808975 -36.09184858,-115.1808975 -36.09184092,-115.1808974 -36.09183372,-115.1808974 -36.09182606,-115.1808974 -36.0918184,-115.1808973 -36.09181119,-115.1808973 -36.09180353,-115.1808972 -36.09179587,-115.1808972 -36.09178866,-115.1808972 -36.091781,-115.1808971 -36.09177334,-115.1808971 -36.09176613,-115.1808971 -36.09175847,-115.180897 -36.09175081,-115.180897 -36.0917436,-115.1808969 -36.09173594,-115.1808969 -36.09172828,-115.1808969 -36.09172108,-115.1808968 -36.09171342,-115.1808968 -36.09170576,-115.1808968 -36.09169855,-115.1808967 -36.09169089,-115.1808967 -36.09168323,-115.1808966 -36.09167602,-115.1808966 -36.09166836,-115.1808966 -36.0916607,-115.1808965 -36.09165349,-115.1808965 -36.09164583,-115.1808965 -36.09163817,-115.1808964 -36.09163096,-115.1808964 -36.0916233,-115.1808963 -36.09161564,-115.1808963 -36.09160844,-115.1808963 -36.09160078,-115.1808962 -36.09159312,-115.1808962 -36.09158591,-115.1808962 -36.09157825,-115.1808961 -36.09157059,-115.1808961 -36.09156338,-115.180896 -36.09155572,-115.180896 -36.09154806,-115.180896 -36.09154085,-115.1808959 -36.09153319,-115.1808959 -36.09152553,-115.1808958 -36.09151832,-115.1808958 -36.09151066,-115.1808958 -36.091503,-115.1808957 -36.09149579,-115.1808957 -36.09148813,-115.1808957 -36.09148048,-115.1808956 -36.09147327,-115.1808956 -36.09146561,-115.1808955 -36.09145795,-115.1808955 -36.09145074,-115.1808955 -36.09144308,-115.1808954 -36.09143542,-115.1808954 -36.09142821,-115.1808954 -36.09142055,-115.1808953 -36.09141289,-115.1808953 -36.09140568,-115.1808952 -36.09139802,-115.1808952 -36.09139036,-115.1808952 -36.09138315,-115.1808951 -36.09137549,-115.1808951 -36.09136784,-115.1808951 -36.09136063,-115.180895 -36.09135297,-115.180895 -36.09134531,-115.1808949 -36.0913381,-115.1808949 -36.09133044,-115.1808949 -36.09132278,-115.1808948 -36.09131557,-115.1808948 -36.09130791,-115.1808948 -36.09130025,-115.1808947 -36.09129304,-115.1808947 -36.09128538,-115.1808946 -36.09127772,-115.1808946 -36.09127051,-115.1808946 -36.09126285,-115.1808945 -36.09125519,-115.1808945 -36.09124799,-115.1808945 -36.09124033,-115.1808944 -36.09123267,-115.1808944 -36.09122546,-115.1808943 -36.0912178,-115.1808943 -36.09121014,-115.1808943 -36.09120293,-115.1808942 -36.09119527,-115.1808942 -36.09118761,-115.1808941 -36.0911804,-115.1808941 -36.09117274,-115.1808941 -36.09116508,-115.180894 -36.09115787,-115.180894 -36.09115021,-115.180894 -36.09114255,-115.1808939 -36.09113535,-115.1808939 -36.09112769,-115.1808938 -36.09112003,-115.1808938 -36.09111282,-115.1808938 -36.09110516,-115.1808937 -36.0910975,-115.1808937 -36.09109029,-115.1808937 -36.09108263,-115.1808936 -36.09107497,-115.1808936 -36.09106776,-115.1808935 -36.0910601,-115.1808935 -36.09105244,-115.1808935 -36.09104523,-115.1808934 -36.09103757,-115.1808934 -36.09102991,-115.1808934 -36.0910227,-115.1808933 -36.09101505,-115.1808933 -36.09100739,-115.1808932 -36.09100018,-115.1808932 -36.09099252,-115.1808932 -36.09098486,-115.1808931 -36.09097765,-115.1808931 -36.09096999,-115.1808931 -36.09096233,-115.180893 -36.09095512,-115.180893 -36.09094746,-115.1808929 -36.0909398,-115.1808929 -36.09093259,-115.1808929 -36.09092493,-115.1808928 -36.09091727,-115.1808928 -36.09091006,-115.1808928 -36.0909024,-115.1808927 -36.09089475,-115.1808927 -36.09088754,-115.1808926 -36.09087988,-115.1808926 -36.09087222,-115.1808926 -36.09086501,-115.1808925 -36.09085735,-115.1808925 -36.09084969,-115.1808925 -36.09084248,-115.1808924 -36.09083482,-115.1808924 -36.09082716,-115.1808923 -36.09081995,-115.1808923 -36.09081229,-115.1808923 -36.09080463,-115.1808922 -36.09079742,-115.1808922 -36.09078976,-115.1808921 -36.0907821,-115.1808921 -36.0907749,-115.1808921 -36.09076724,-115.180892 -36.09075958,-115.180892 -36.09075237,-115.180892 -36.09074471,-115.1808919 -36.09073705,-115.1808919 -36.09072984,-115.1808918 -36.09072218,-115.1808918 -36.09071452,-115.1808918 -36.09070731,-115.1808917 -36.09069965,-115.1808917 -36.09069199,-115.1808917 -36.09068478,-115.1808916 -36.09067712,-115.1808916 -36.09066946,-115.1808915 -36.09066226,-115.1808915 -36.0906546,-115.1808915 -36.09064694,-115.1808914 -36.09063973,-115.1808914 -36.09063207,-115.1808914 -36.09062441,-115.1808913 -36.0906172,-115.1808913 -36.09060954,-115.1808912 -36.09060188,-115.1808912 -36.09059467,-115.1808912 -36.09058701,-115.1808911 -36.09057935,-115.1808911 -36.09057214,-115.1808911 -36.09056448,-115.180891 -36.09055682,-115.180891 -36.09054961,-115.180891 -36.09054196,-115.180891 -36.0905343,-115.180891 -36.09052709,-115.180891 -36.09051943,-115.180891 -36.09051177,-115.1808911 -36.09050456,-115.1808911 -36.0904969,-115.1808911 -36.09048924,-115.1808911 -36.09048203,-115.1808911 -36.09047437,-115.1808911 -36.09046671,-115.1808911 -36.0904595,-115.1808911 -36.09045184,-115.1808911 -36.09044418,-115.1808911 -36.09043697,-115.1808911 -36.09042931,-115.1808912 -36.09042165,-115.1808912 -36.09041445,-115.1808912 -36.09040679,-115.1808912 -36.09039913,-115.1808912 -36.09039192,-115.1808912 -36.09038426,-115.1808912 -36.0903766,-115.1808912 -36.09036939,-115.1808912 -36.09036173,-115.1808912 -36.09035407,-115.1808912 -36.09034686,-115.1808912 -36.0903392,-115.1808913 -36.09033154,-115.1808913 -36.09032433,-115.1808913 -36.09031667,-115.1808913 -36.09030901,-115.1808913 -36.0903018,-115.1808913 -36.09029414,-115.1808913 -36.09028648,-115.1808913 -36.09027928,-115.1808913 -36.09027162,-115.1808913 -36.09026396,-115.1808913 -36.09025675,-115.1808913 -36.09024909,-115.1808914 -36.09024143,-115.1808914 -36.09023422,-115.1808914 -36.09022656,-115.1808914 -36.0902189,-115.1808914 -36.09021169,-115.1808914 -36.09020403,-115.1808914 -36.09019637,-115.1808914 -36.09018916,-115.1808914 -36.0901815,-115.1808914 -36.09017384,-115.1808914 -36.09016663,-115.1808915 -36.09015897,-115.1808915 -36.09015131,-115.1808915 -36.09014411,-115.1808915 -36.09013645,-115.1808915 -36.09012879,-115.1808915 -36.09012158,-115.1808915 -36.09011392,-115.1808915 -36.09010626,-115.1808915 -36.09009905,-115.1808915 -36.09009139,-115.1808915 -36.09008373,-115.1808915 -36.09007652,-115.1808916 -36.09006886,-115.1808916 -36.0900612,-115.1808916 -36.09005399,-115.1808916 -36.09004633,-115.1808916 -36.09003867,-115.1808916 -36.09003146,-115.1808916 -36.0900238,-115.1808916 -36.09001615,-115.1808916 -36.09000894,-115.1808916 -36.09000128,-115.1808916 -36.08999362,-115.1808916 -36.08998641,-115.1808917 -36.08997875,-115.1808917 -36.08997109,-115.1808917 -36.08996388,-115.1808917 -36.08995622,-115.1808917 -36.08994856,-115.1808917 -36.08994135,-115.1808917 -36.08993369,-115.1808917 -36.08992603,-115.1808917 -36.08991882,-115.1808917 -36.08991116,-115.1808917 -36.0899035,-115.1808918 -36.08989629,-115.1808918 -36.08988864,-115.1808918 -36.08988098,-115.1808918 -36.08987377,-115.1808918 -36.08986611,-115.1808918 -36.08985845,-115.1808918 -36.08985124,-115.1808918 -36.08984358,-115.1808918 -36.08983592,-115.1808918 -36.08982871,-115.1808918 -36.08982105,-115.1808918 -36.08981339,-115.1808919 -36.08980618,-115.1808919 -36.08979852,-115.1808919 -36.08979086,-115.1808919 -36.08978365,-115.1808919 -36.08977599,-115.1808919 -36.08976833,-115.1808919 -36.08976113,-115.1808919 -36.08975347,-115.1808919 -36.08974581,-115.1808919 -36.0897386,-115.1808919 -36.08973094,-115.1808919 -36.08972328,-115.180892 -36.08971607,-115.180892 -36.08970841,-115.180892 -36.08970075,-115.180892 -36.08969354,-115.180892 -36.08968588,-115.180892 -36.08967822,-115.180892 -36.08967101,-115.180892 -36.08966335,-115.180892 -36.08965569,-115.180892 -36.08964848,-115.180892 -36.08964082,-115.1808921 -36.08963316,-115.1808921 -36.08962596,-115.1808921 -36.0896183,-115.1808921 -36.08961064,-115.1808921 -36.08960343,-115.1808921 -36.08959577,-115.1808921 -36.08958811,-115.1808921 -36.0895809,-115.1808921 -36.08957324,-115.1808921 -36.08956558,-115.1808921 -36.08955837,-115.1808921 -36.08955071,-115.1808922 -36.08954305,-115.1808922 -36.08953584,-115.1808922 -36.08952818,-115.1808922 -36.08952052,-115.1808922 -36.08951331,-115.1808922 -36.08950565,-115.1808922 -36.08949799,-115.1808922 -36.08949079,-115.1808922 -36.08948313,-115.1808922 -36.08947547,-115.1808922 -36.08946826,-115.1808922 -36.0894606,-115.1808923 -36.08945294,-115.1808923 -36.08944573,-115.1808923 -36.08943807,-115.1808923 -36.08943041,-115.1808923 -36.0894232,-115.1808923 -36.08941554,-115.1808923 -36.08940788,-115.1808923 -36.08940067,-115.1808923 -36.08939301,-115.1808923 -36.08938535,-115.1808923 -36.08937814,-115.1808924 -36.08937048,-115.1808924 -36.08936283,-115.1808924 -36.08935562,-115.1808924 -36.08934796,-115.1808924 -36.0893403,-115.1808924 -36.08933309,-115.1808924 -36.08932543,-115.1808924 -36.08931777,-115.1808924 -36.08931056,-115.1808924 -36.0893029,-115.1808924 -36.08929524,-115.1808924 -36.08928803,-115.1808925 -36.08928037,-115.1808925 -36.08927271,-115.1808925 -36.0892655,-115.1808925 -36.08925784,-115.1808925 -36.08925018,-115.1808925 -36.08924297,-115.1808925 -36.08923532,-115.1808925 -36.08922766,-115.1808925 -36.08922045,-115.1808925 -36.08921279,-115.1808925 -36.08920513,-115.1808925 -36.08919792,-115.1808926 -36.08919026,-115.1808926 -36.0891826,-115.1808926 -36.08917539,-115.1808926 -36.08916773,-115.1808926 -36.08916007,-115.1808926 -36.08915286,-115.1808926 -36.0891452,-115.1808926 -36.08913754,-115.1808926 -36.08913033,-115.1808926 -36.08912267,-115.1808926 -36.08911501,-115.1808927 -36.08910781,-115.1808927 -36.08910015,-115.1808927 -36.08909249,-115.1808927 -36.08908528,-115.1808927 -36.08907762,-115.1808927 -36.08906996,-115.1808927 -36.08906275,-115.1808927 -36.08905509,-115.1808927 -36.08904743,-115.1808927 -36.08904022,-115.1808927 -36.08903256,-115.1808927 -36.0890249,-115.1808928 -36.08901769,-115.1808928 -36.08901003,-115.1808928 -36.08900237,-115.1808928 -36.08899516,-115.1808928 -36.0889875,-115.1808928 -36.08897984,-115.1808928 -36.08897264,-115.1808928 -36.08896498,-115.1808928 -36.08895732,-115.1808928 -36.08895011,-115.1808928 -36.08894245,-115.1808928 -36.08893479,-115.1808929 -36.08892758,-115.1808929 -36.08891992,-115.1808929 -36.08891226,-115.1808929 -36.08890505,-115.1808929 -36.08889739,-115.1808929 -36.08888973,-115.1808929 -36.08888252,-115.1808929 -36.08887486,-115.1808929 -36.0888672,-115.1808929 -36.08885999,-115.1808929 -36.08885233,-115.180893 -36.08884467,-115.180893 -36.08883747,-115.180893 -36.08882981,-115.180893 -36.08882215,-115.180893 -36.08881494,-115.180893 -36.08880728,-115.180893 -36.08879962,-115.180893 -36.08879241,-115.180893 -36.08878475,-115.180893 -36.08877709,-115.1808931 -36.08876988,-115.1808931 -36.08876222,-115.1808931 -36.08875456,-115.1808931 -36.08874735,-115.1808931 -36.08873969,-115.1808931 -36.08873203,-115.1808931 -36.08872482,-115.1808931 -36.08871716,-115.1808931 -36.08870951,-115.1808932 -36.0887023,-115.1808932 -36.08869464,-115.1808932 -36.08868698,-115.1808932 -36.08867977,-115.1808932 -36.08867211,-115.1808932 -36.08866445,-115.1808932 -36.08865724,-115.1808932 -36.08864958,-115.1808933 -36.08864192,-115.1808933 -36.08863471,-115.1808933 -36.08862705,-115.1808933 -36.08861939,-115.1808933 -36.08861218,-115.1808933 -36.08860452,-115.1808933 -36.08859686,-115.1808933 -36.08858965,-115.1808933 -36.088582,-115.1808934 -36.08857434,-115.1808934 -36.08856713,-115.1808934 -36.08855947,-115.1808934 -36.08855181,-115.1808934 -36.0885446,-115.1808934 -36.08853694,-115.1808934 -36.08852928,-115.1808934 -36.08852207,-115.1808935 -36.08851441,-115.1808935 -36.08850675,-115.1808935 -36.08849954,-115.1808935 -36.08849188,-115.1808935 -36.08848422,-115.1808935 -36.08847701,-115.1808935 -36.08846935,-115.1808935 -36.08846169,-115.1808935 -36.08845449,-115.1808936 -36.08844683,-115.1808936 -36.08843917,-115.1808936 -36.08843196,-115.1808936 -36.0884243,-115.1808936 -36.08841664,-115.1808936 -36.08840943,-115.1808936 -36.08840177,-115.1808936 -36.08839411,-115.1808937 -36.0883869,-115.1808937 -36.08837924,-115.1808937 -36.08837158,-115.1808937 -36.08836437,-115.1808937 -36.08835671,-115.1808937 -36.08834905,-115.1808937 -36.08834184,-115.1808937 -36.08833418,-115.1808937 -36.08832652,-115.1808938 -36.08831932,-115.1808938 -36.08831166,-115.1808938 -36.088304,-115.1808938 -36.08829679,-115.1808938 -36.08828913,-115.1808938 -36.08828147,-115.1808938 -36.08827426,-115.1808938 -36.0882666,-115.1808939 -36.08825894,-115.1808939 -36.08825173,-115.1808939 -36.08824407,-115.1808939 -36.08823641,-115.1808939 -36.0882292,-115.1808939 -36.08822154,-115.1808939 -36.08821388,-115.1808939 -36.08820667,-115.1808939 -36.08819901,-115.180894 -36.08819135,-115.180894 -36.08818415,-115.180894 -36.08817649,-115.180894 -36.08816883,-115.180894 -36.08816162,-115.180894 -36.08815396,-115.180894 -36.0881463,-115.180894 -36.08813909,-115.1808941 -36.08813143,-115.1808941 -36.08812377,-115.1808941 -36.08811656,-115.1808941 -36.0881089,-115.1808941 -36.08810124,-115.1808941 -36.08809403,-115.1808941 -36.08808637,-115.1808941 -36.08807871,-115.1808941 -36.0880715,-115.1808942 -36.08806384,-115.1808942 -36.08805619,-115.1808942 -36.08804898,-115.1808942 -36.08804132,-115.1808942 -36.08803366,-115.1808942 -36.08802645,-115.1808942 -36.08801879,-115.1808942 -36.08801113,-115.1808943 -36.08800392,-115.1808943 -36.08799626,-115.1808943 -36.0879886,-115.1808943 -36.08798139,-115.1808943 -36.08797373,-115.1808943 -36.08796607,-115.1808943 -36.08795886,-115.1808943 -36.0879512,-115.1808944 -36.08794354,-115.1808944 -36.08793633,-115.1808944 -36.08792867,-115.1808944 -36.08792102,-115.1808944 -36.08791381,-115.1808944 -36.08790615,-115.1808944 -36.08789849,-115.1808944 -36.08789128,-115.1808944 -36.08788362,-115.1808945 -36.08787596,-115.1808945 -36.08786875,-115.1808945 -36.08786109,-115.1808945 -36.08785343,-115.1808945 -36.08784622,-115.1808945 -36.08783856,-115.1808945 -36.0878309,-115.1808945 -36.08782369,-115.1808946 -36.08781603,-115.1808946 -36.08780837,-115.1808946 -36.08780116,-115.1808946 -36.08779351,-115.1808946 -36.08778585,-115.1808946 -36.08777864,-115.1808946 -36.08777098,-115.1808946 -36.08776332,-115.1808946 -36.08775611,-115.1808947 -36.08774845,-115.1808947 -36.08774079,-115.1808947 -36.08773358,-115.1808947 -36.08772592,-115.1808947 -36.08771826,-115.1808947 -36.08771105,-115.1808947 -36.08770339,-115.1808947 -36.08769573,-115.1808948 -36.08768852,-115.1808948 -36.08768086,-115.1808948 -36.0876732,-115.1808948 -36.087666,-115.1808948 -36.08765834,-115.1808948 -36.08765068,-115.1808948 -36.08764347,-115.1808948 -36.08763581,-115.1808948 -36.08762815,-115.1808949 -36.08762094,-115.1808949 -36.08761328,-115.1808949 -36.08760562,-115.1808949 -36.08759841,-115.1808949 -36.08759075,-115.1808949 -36.08758309,-115.1808949 -36.08757588,-115.1808949 -36.08756822,-115.180895 -36.08756056,-115.180895 -36.08755335,-115.180895 -36.08754569,-115.180895 -36.08753803,-115.180895 -36.08753083,-115.180895 -36.08752317,-115.180895 -36.08751551,-115.180895 -36.0875083,-115.180895 -36.08750064,-115.1808951 -36.08749298,-115.1808951 -36.08748577,-115.1808951 -36.08747811,-115.1808951 -36.08747045,-115.1808951 -36.08746324,-115.1808951 -36.08745558,-115.1808951 -36.08744792,-115.1808951 -36.08744071,-115.1808952 -36.08743305,-115.1808952 -36.08742539,-115.1808952 -36.08741818,-115.1808952 -36.08741052,-115.1808952 -36.08740286,-115.1808952 -36.08739566,-115.1808952 -36.087388,-115.1808952 -36.08738034,-115.1808952 -36.08737313,-115.1808953 -36.08736547,-115.1808953 -36.08735781,-115.1808953 -36.0873506,-115.1808953 -36.08734294,-115.1808953 -36.08733528,-115.1808953 -36.08732807,-115.1808953 -36.08732041,-115.1808953 -36.08731275,-115.1808954 -36.08730554,-115.1808954 -36.08729788,-115.1808954 -36.08729022,-115.1808954 -36.08728301,-115.1808954 -36.08727535,-115.1808954 -36.0872677,-115.1808954 -36.08726049,-115.1808954 -36.08725283,-115.1808954 -36.08724517,-115.1808955 -36.08723796,-115.1808955 -36.0872303,-115.1808955 -36.08722264,-115.1808955 -36.08721543,-115.1808955 -36.08720777,-115.1808955 -36.08720011,-115.1808955 -36.0871929,-115.1808955 -36.08718524,-115.1808956 -36.08717758,-115.1808956 -36.08717037,-115.1808956 -36.08716271,-115.1808956 -36.08715505,-115.1808956 -36.08714784,-115.1808956 -36.08714019,-115.1808956 -36.08713253,-115.1808956 -36.08712532,-115.1808956 -36.08711766,-115.1808957 -36.08711,-115.1808957 -36.08710279,-115.1808957 -36.08709513,-115.1808957 -36.08708747,-115.1808957 -36.08708026,-115.1808957 -36.0870726,-115.1808957 -36.08706494,-115.1808957 -36.08705773,-115.1808958 -36.08705007,-115.1808958 -36.08704241,-115.1808958 -36.0870352,-115.1808958 -36.08702754,-115.1808958 -36.08701988,-115.1808958 -36.08701267,-115.1808958 -36.08700502,-115.1808958 -36.08699736,-115.1808959 -36.08699015,-115.1808959 -36.08698249,-115.1808959 -36.08697483,-115.1808959 -36.08696762,-115.1808959 -36.08695996,-115.1808959 -36.0869523,-115.1808959 -36.08694509,-115.1808959 -36.08693743,-115.1808959 -36.08692977,-115.180896 -36.08692256,-115.180896 -36.0869149,-115.180896 -36.08690724,-115.180896 -36.08690003,-115.180896 -36.08689237,-115.1808961 -36.08688471,-115.1808961 -36.08687751,-115.1808961 -36.08686985,-115.1808962 -36.08686219,-115.1808962 -36.08685498,-115.1808963 -36.08684732,-115.1808963 -36.08683966,-115.1808964 -36.08683245,-115.1808964 -36.08682479,-115.1808964 -36.08681713,-115.1808965 -36.08680992,-115.1808965 -36.08680226,-115.1808966 -36.0867946,-115.1808966 -36.08678739,-115.1808967 -36.08677973,-115.1808967 -36.08677207,-115.1808968 -36.08676487,-115.1808968 -36.08675721,-115.1808968 -36.08674955,-115.1808969 -36.08674234,-115.1808969 -36.08673468,-115.180897 -36.08672702,-115.180897 -36.08671981,-115.1808971 -36.08671215,-115.1808971 -36.08670449,-115.1808972 -36.08669728,-115.1808972 -36.08668962,-115.1808972 -36.08668196,-115.1808973 -36.08667475,-115.1808973 -36.08666709,-115.1808974 -36.08665943,-115.1808974 -36.08665222,-115.1808975 -36.08664457,-115.1808975 -36.08663691,-115.1808975 -36.0866297,-115.1808976 -36.08662204,-115.1808976 -36.08661438,-115.1808977 -36.08660717,-115.1808977 -36.08659951,-115.1808978 -36.08659185,-115.1808978 -36.08658464,-115.1808978 -36.08657698,-115.1808979 -36.08656932,-115.1808979 -36.08656211,-115.180898 -36.08655445,-115.180898 -36.08654679,-115.1808981 -36.08653958,-115.1808981 -36.08653193,-115.1808982 -36.08652427,-115.1808982 -36.08651706,-115.1808982 -36.0865094,-115.1808983 -36.08650174,-115.1808983 -36.08649453,-115.1808984 -36.08648687,-115.1808984 -36.08647921,-115.1808985 -36.086472,-115.1808985 -36.08646434,-115.1808986 -36.08645668,-115.1808986 -36.08644947,-115.1808986 -36.08644181,-115.1808987 -36.08643415,-115.1808987 -36.08642694,-115.1808988 -36.08641928,-115.1808988 -36.08641163,-115.1808989 -36.08640442,-115.1808989 -36.08639676,-115.1808989 -36.0863891,-115.180899 -36.08638189,-115.180899 -36.08637423,-115.1808991 -36.08636657,-115.1808991 -36.08635936,-115.1808992 -36.0863517,-115.1808992 -36.08634404,-115.1808993 -36.08633683,-115.1808993 -36.08632917,-115.1808993 -36.08632151,-115.1808994 -36.0863143,-115.1808994 -36.08630664,-115.1808995 -36.08629898,-115.1808995 -36.08629178,-115.1808996 -36.08628412,-115.1808996 -36.08627646,-115.1808996 -36.08626925,-115.1808997 -36.08626159,-115.1808997 -36.08625393,-115.1808998 -36.08624672,-115.1808998 -36.08623906,-115.1808999 -36.0862314,-115.1808999 -36.08622419,-115.1809 -36.08621653,-115.1809 -36.08620887,-115.1809 -36.08620166,-115.1809001 -36.086194,-115.1809001 -36.08618634,-115.1809002 -36.08617914,-115.1809002 -36.08617148,-115.1809003 -36.08616382,-115.1809003 -36.08615661,-115.1809003 -36.08614895,-115.1809004 -36.08614129,-115.1809004 -36.08613408,-115.1809005 -36.08612642,-115.1809005 -36.08611876,-115.1809006 -36.08611155,-115.1809006 -36.08610389,-115.1809007 -36.08609623,-115.1809007 -36.08608902,-115.1809007 -36.08608136,-115.1809008 -36.0860737,-115.1809008 -36.0860665,-115.1809009 -36.08605884,-115.1809009 -36.08605118,-115.180901 -36.08604397,-115.180901 -36.08603631,-115.180901 -36.08602865,-115.1809011 -36.08602144,-115.1809011 -36.08601378,-115.1809012 -36.08600612,-115.1809012 -36.08599891,-115.1809013 -36.08599125,-115.1809013 -36.08598359,-115.1809014 -36.08597638,-115.1809014 -36.08596872,-115.1809014 -36.08596106,-115.1809015 -36.08595386,-115.1809015 -36.0859462,-115.1809016 -36.08593854,-115.1809016 -36.08593133,-115.1809017 -36.08592367,-115.1809017 -36.08591601,-115.1809017 -36.0859088,-115.1809018 -36.08590114,-115.1809018 -36.08589348,-115.1809019 -36.08588627,-115.1809019 -36.08587861,-115.180902 -36.08587095,-115.180902 -36.08586374,-115.1809021 -36.08585608,-115.1809021 -36.08584842,-115.1809021 -36.08584121,-115.1809022 -36.08583356,-115.1809022 -36.0858259,-115.1809023 -36.08581869,-115.1809023 -36.08581103,-115.1809024 -36.08580337,-115.1809024 -36.08579616,-115.1809024 -36.0857885,-115.1809025 -36.08578084,-115.1809025 -36.08577363,-115.1809026 -36.08576597,-115.1809026 -36.08575831,-115.1809027 -36.0857511,-115.1809027 -36.08574344,-115.1809028 -36.08573578,-115.1809028 -36.08572857,-115.1809028 -36.08572091,-115.1809029 -36.08571326,-115.1809029 -36.08570605,-115.180903 -36.08569839,-115.180903 -36.08569073,-115.1809031 -36.08568352,-115.1809031 -36.08567586,-115.1809031 -36.0856682,-115.1809032 -36.08566099,-115.1809032 -36.08565333,-115.1809033 -36.08564567,-115.1809033 -36.08563846,-115.1809034 -36.0856308,-115.1809034 -36.08562314,-115.1809035 -36.08561593,-115.1809035 -36.08560827,-115.1809035 -36.08560061,-115.1809036 -36.08559341,-115.1809036 -36.08558575,-115.1809037 -36.08557809,-115.1809037 -36.08557088,-115.1809038 -36.08556322,-115.1809038 -36.08555556,-115.1809038 -36.08554835,-115.1809039 -36.08554069,-115.1809039 -36.08553303,-115.180904 -36.08552582,-115.180904 -36.08551816,-115.1809041 -36.0855105,-115.1809041 -36.08550329,-115.1809042 -36.08549563,-115.1809042 -36.08548797,-115.1809042 -36.08548077,-115.1809043 -36.08547311,-115.1809043 -36.08546545,-115.1809044 -36.08545824,-115.1809044 -36.08545058,-115.1809045 -36.08544292,-115.1809045 -36.08543571,-115.1809045 -36.08542805,-115.1809046 -36.08542039,-115.1809046 -36.08541318,-115.1809047 -36.08540552,-115.1809047 -36.08539786,-115.1809048 -36.08539065,-115.1809048 -36.08538299,-115.1809049 -36.08537533,-115.1809049 -36.08536813,-115.1809049 -36.08536047,-115.180905 -36.08535281,-115.180905 -36.0853456,-115.1809051 -36.08533794,-115.1809051 -36.08533028,-115.1809052 -36.08532307,-115.1809052 -36.08531541,-115.1809052 -36.08530775,-115.1809053 -36.08530054,-115.1809053 -36.08529288,-115.1809054 -36.08528522,-115.1809054 -36.08527801,-115.1809055 -36.08527035,-115.1809055 -36.08526269,-115.1809056 -36.08525548,-115.1809056 -36.08524783,-115.1809056 -36.08524017,-115.1809057 -36.08523296,-115.1809057 -36.0852253,-115.1809058 -36.08521764,-115.1809058 -36.08521043,-115.1809059 -36.08520277,-115.1809059 -36.08519511,-115.1809059 -36.0851879,-115.180906 -36.08518024,-115.180906 -36.08517258,-115.1809061 -36.08516537,-115.1809061 -36.08515771,-115.1809062 -36.08515005,-115.1809062 -36.08514284,-115.1809063 -36.08513519,-115.1809063 -36.08512753,-115.1809063 -36.08512032,-115.1809064 -36.08511266,-115.1809064 -36.085105,-115.1809065 -36.08509779,-115.1809065 -36.08509013,-115.1809066 -36.08508247,-115.1809066 -36.08507526,-115.1809066 -36.0850676,-115.1809067 -36.08505994,-115.1809067 -36.08505273,-115.1809068 -36.08504507,-115.1809068 -36.08503741,-115.1809069 -36.0850302,-115.1809069 -36.08502254,-115.180907 -36.08501489,-115.180907 -36.08500768,-115.180907 -36.08500002,-115.1809071 -36.08499236,-115.1809071 -36.08498515,-115.1809072 -36.08497749,-115.1809072 -36.08496983,-115.1809073 -36.08496262,-115.1809073 -36.08495496,-115.1809073 -36.0849473,-115.1809074 -36.08494009,-115.1809074 -36.08493243,-115.1809075 -36.08492477,-115.1809075 -36.08491756,-115.1809076 -36.0849099,-115.1809076 -36.08490224,-115.1809077 -36.08489504,-115.1809077 -36.08488738,-115.1809077 -36.08487972,-115.1809078 -36.08487251,-115.1809078 -36.08486485,-115.1809079 -36.08485719,-115.1809079 -36.08484998,-115.180908 -36.08484232,-115.180908 -36.08483466,-115.180908 -36.08482745,-115.1809081 -36.08481979,-115.1809081 -36.08481213,-115.1809082 -36.08480492,-115.1809082 -36.08479726,-115.1809083 -36.0847896,-115.1809083 -36.0847824,-115.1809084 -36.08477474,-115.1809084 -36.08476708,-115.1809084 -36.08475987,-115.1809085 -36.08475221,-115.1809085 -36.08474455,-115.1809086 -36.08473734,-115.1809086 -36.08472968,-115.1809087 -36.08472202,-115.1809087 -36.08471481,-115.1809087 -36.08470715,-115.1809088 -36.08469949,-115.1809088 -36.08469228,-115.1809089 -36.08468462,-115.1809089 -36.08467696,-115.180909 -36.08466976,-115.180909 -36.0846621,-115.1809091 -36.08465444,-115.1809091 -36.08464723,-115.1809091 -36.08463957,-115.1809092 -36.08463191,-115.1809092 -36.0846247,-115.1809093 -36.08461704,-115.1809093 -36.08460938,-115.1809094 -36.08460217,-115.1809094 -36.08459451,-115.1809094 -36.08458685,-115.1809095 -36.08457964,-115.1809095 -36.08457198,-115.1809096 -36.08456432,-115.1809096 -36.08455711,-115.1809097 -36.08454946,-115.1809097 -36.0845418,-115.1809098 -36.08453459,-115.1809098 -36.08452693,-115.1809098 -36.08451927,-115.1809099 -36.08451206,-115.1809099 -36.0845044,-115.18091 -36.08449674,-115.18091 -36.08448953,-115.1809101 -36.08448187,-115.1809101 -36.08447421,-115.1809101 -36.084467,-115.1809102 -36.08445934,-115.1809102 -36.08445168,-115.1809103 -36.08444447,-115.1809103 -36.08443681,-115.1809104 -36.08442916,-115.1809104 -36.08442195,-115.1809105 -36.08441429,-115.1809105 -36.08440663,-115.1809105 -36.08439942,-115.1809106 -36.08439176,-115.1809106 -36.0843841,-115.1809107 -36.08437689,-115.1809107 -36.08436923,-115.1809108 -36.08436157,-115.1809108 -36.08435436,-115.1809108 -36.0843467,-115.1809109 -36.08433904,-115.1809109 -36.08433183,-115.180911 -36.08432417,-115.180911 -36.08431651,-115.1809111 -36.08430931,-115.1809111 -36.08430165,-115.1809112 -36.08429399,-115.1809112 -36.08428678,-115.1809112 -36.08427912,-115.1809113 -36.08427146,-115.1809113 -36.08426425,-115.1809114 -36.08425659,-115.1809114 -36.08424893,-115.1809115 -36.08424172,-115.1809115 -36.08423406,-115.1809115 -36.0842264,-115.1809116 -36.08421919,-115.1809116 -36.08421153,-115.1809117 -36.08420387,-115.1809117 -36.08419667,-115.1809118 -36.08418901,-115.1809118 -36.08418135,-115.1809119 -36.08417414,-115.1809119 -36.08416648,-115.1809119 -36.08415882,-115.180912 -36.08415161,-115.180912 -36.08414395,-115.1809121 -36.08413629,-115.1809121 -36.08412908,-115.1809122 -36.08412142,-115.1809122 -36.08411376,-115.1809123 -36.08410655,-115.1809123 -36.08409889,-115.1809123 -36.08409123,-115.1809124 -36.08408403,-115.1809124 -36.08407637,-115.1809125 -36.08406871,-115.1809125 -36.0840615,-115.1809126 -36.08405384,-115.1809126 -36.08404618,-115.1809126 -36.08403897,-115.1809127 -36.08403131,-115.1809127 -36.08402365,-115.1809128 -36.08401644,-115.1809128 -36.08400878,-115.1809129 -36.08400112,-115.1809129 -36.08399391,-115.1809129 -36.08398625,-115.180913 -36.08397859,-115.180913 -36.08397138,-115.1809131 -36.08396373,-115.1809131 -36.08395607,-115.1809132 -36.08394886,-115.1809132 -36.0839412,-115.1809133 -36.08393354,-115.1809133 -36.08392633,-115.1809133 -36.08391867,-115.1809134 -36.08391101,-115.1809134 -36.0839038,-115.1809135 -36.08389614,-115.1809135 -36.08388848,-115.1809136 -36.08388127,-115.1809136 -36.08387361,-115.1809136 -36.08386595,-115.1809137 -36.08385874,-115.1809137 -36.08385108,-115.1809138 -36.08384343,-115.1809138 -36.08383622,-115.1809139 -36.08382856,-115.1809139 -36.0838209,-115.180914 -36.08381369,-115.180914 -36.08380603,-115.180914 -36.08379837,-115.1809141 -36.08379116,-115.1809141 -36.0837835,-115.1809142 -36.08377584,-115.1809142 -36.08376863,-115.1809143 -36.08376097,-115.1809143 -36.08375331,-115.1809144 -36.0837461,-115.1809144 -36.08373844,-115.1809144 -36.08373078,-115.1809145 -36.08372358,-115.1809145 -36.08371592,-115.1809146 -36.08370826,-115.1809146 -36.08370105,-115.1809147 -36.08369339,-115.1809147 -36.08368573,-115.1809147 -36.08367852,-115.1809148 -36.08367086,-115.1809148 -36.0836632,-115.1809149 -36.08365599,-115.1809149 -36.08364833,-115.180915 -36.08364067,-115.180915 -36.08363346,-115.180915 -36.0836258,-115.1809151 -36.08361814,-115.1809151 -36.08361094,-115.1809152 -36.08360328,-115.1809152 -36.08359562,-115.1809153 -36.08358841,-115.1809153 -36.08358075,-115.1809154 -36.08357309,-115.1809154 -36.08356588,-115.1809154 -36.08355822,-115.1809155 -36.08355056,-115.1809155 -36.08354335,-115.1809156 -36.08353569,-115.1809156 -36.08352803,-115.1809157 -36.08352082,-115.1809157 -36.08351316,-115.1809158 -36.0835055,-115.1809158 -36.0834983,-115.1809158 -36.08349064,-115.1809159 -36.08348298,-115.1809159 -36.08347577,-115.180916 -36.08346811,-115.180916 -36.08346045,-115.1809161 -36.08345324,-115.1809161 -36.08344558,-115.1809161 -36.08343792,-115.1809162 -36.08343071,-115.1809162 -36.08342305,-115.1809163 -36.08341539,-115.1809163 -36.08340818,-115.1809164 -36.08340052,-115.1809164 -36.08339286,-115.1809165 -36.08338565,-115.1809165 -36.083378,-115.1809165 -36.08337034,-115.1809166 -36.08336313,-115.1809166 -36.08335547,-115.1809167 -36.08334781,-115.1809167 -36.0833406,-115.1809168 -36.08333294,-115.1809168 -36.08332528,-115.1809168 -36.08331807,-115.1809169 -36.08331041,-115.1809169 -36.08330275,-115.180917 -36.08329554,-115.180917 -36.08328788,-115.1809171 -36.08328022,-115.1809171 -36.08327301,-115.1809172 -36.08326535,-115.1809172 -36.0832577,-115.1809172 -36.08325049,-115.1809173 -36.08324283,-115.1809173 -36.08323517,-115.1809174 -36.08322796,-115.1809174 -36.0832203,-115.1809175 -36.08321264,-115.1809175 -36.08320543,-115.1809175 -36.08319777,-115.1809176 -36.08319011,-115.1809176 -36.0831829,-115.1809177 -36.08317524,-115.1809177 -36.08316758,-115.1809178 -36.08316037,-115.1809178 -36.08315271,-115.1809179 -36.08314505,-115.1809179 -36.08313785,-115.1809179 -36.08313019,-115.180918 -36.08312253,-115.180918 -36.08311532,-115.1809181 -36.08310766,-115.1809181 -36.0831,-115.1809182 -36.08309279,-115.1809182 -36.08308513,-115.1809182 -36.08307747,-115.1809183 -36.08307026,-115.1809183 -36.0830626,-115.1809184 -36.08305494,-115.1809184 -36.08304773,-115.1809185 -36.08304007,-115.1809185 -36.08303241,-115.1809186 -36.08302521,-115.1809186 -36.08301755,-115.1809186 -36.08300989,-115.1809187 -36.08300268,-115.1809187 -36.08299502,-115.1809188 -36.08298736,-115.1809188 -36.08298015,-115.1809189 -36.08297249,-115.1809189 -36.08296483,-115.1809189 -36.08295762,-115.180919 -36.08294996,-115.180919 -36.0829423,-115.1809191 -36.08293509,-115.1809191 -36.08292743,-115.1809192 -36.08291977,-115.1809192 -36.08291256,-115.1809193 -36.08290491,-115.1809193 -36.08289725,-115.1809193 -36.08289004,-115.1809194 -36.08288238,-115.1809194 -36.08287472,-115.1809195 -36.08286751,-115.1809195 -36.08285985,-115.1809196 -36.08285219,-115.1809196 -36.08284498,-115.1809196 -36.08283732,-115.1809197 -36.08282966,-115.1809197 -36.08282245,-115.1809198 -36.08281479,-115.1809198 -36.08280713,-115.1809199 -36.08279992,-115.1809199 -36.08279226,-115.18092 -36.08278461,-115.18092 -36.0827774,-115.18092 -36.08276974,-115.1809201 -36.08276208,-115.1809201 -36.08275487,-115.1809202 -36.08274721,-115.1809202 -36.08273955,-115.1809203 -36.08273234,-115.1809203 -36.08272468,-115.1809203 -36.08271702,-115.1809204 -36.08270981,-115.1809204 -36.08270215,-115.1809205 -36.08269449,-115.1809205 -36.08268728,-115.1809206 -36.08267962,-115.1809206 -36.08267196,-115.1809207 -36.08266476,-115.1809207 -36.0826571,-115.1809207 -36.08264944,-115.1809208 -36.08264223,-115.1809208 -36.08263457,-115.1809209 -36.08262691,-115.1809209 -36.0826197,-115.180921 -36.08261204,-115.180921 -36.08260438,-115.180921 -36.08259717,-115.1809211 -36.08258951,-115.1809211 -36.08258185,-115.1809212 -36.08257464,-115.1809212 -36.08256698,-115.1809213 -36.08255932,-115.1809213 -36.08255212,-115.1809214 -36.08254446,-115.1809214 -36.0825368,-115.1809214 -36.08252959,-115.1809215 -36.08252193,-115.1809215 -36.08251427,-115.1809216 -36.08250706,-115.1809216 -36.0824994,-115.1809217 -36.08249174,-115.1809217 -36.08248453,-115.1809217 -36.08247687,-115.1809218 -36.08246921,-115.1809218 -36.082462,-115.1809219 -36.08245434,-115.1809219 -36.08244668,-115.180922 -36.08243948,-115.180922 -36.08243182,-115.1809221 -36.08242416,-115.1809221 -36.08241695,-115.1809221 -36.08240929,-115.1809222 -36.08240163,-115.1809222 -36.08239442,-115.1809223 -36.08238676,-115.1809223 -36.0823791,-115.1809224 -36.08237189,-115.1809224 -36.08236423,-115.1809224 -36.08235657,-115.1809225 -36.08234936,-115.1809225 -36.0823417,-115.1809226 -36.08233404,-115.1809226 -36.08232683,-115.1809227 -36.08231918,-115.1809227 -36.08231152,-115.1809228 -36.08230431,-115.1809228 -36.08229665,-115.1809228 -36.08228899,-115.1809229 -36.08228178,-115.1809229 -36.08227412,-115.180923 -36.08226646,-115.180923 -36.08225925,-115.1809231 -36.08225159,-115.1809231 -36.08224393,-115.1809231 -36.08223672,-115.1809232 -36.08222906,-115.1809232 -36.0822214,-115.1809233 -36.08221419,-115.1809233 -36.08220653,-115.1809234 -36.08219888,-115.1809234 -36.08219167,-115.1809235 -36.08218401,-115.1809235 -36.08217635,-115.1809235 -36.08216914,-115.1809236 -36.08216148,-115.1809236 -36.08215382,-115.1809237 -36.08214661,-115.1809237 -36.08213895,-115.1809238 -36.08213129,-115.1809238 -36.08212408,-115.1809238 -36.08211642,-115.1809239 -36.08210876,-115.1809239 -36.08210155,-115.180924 -36.08209389,-115.180924 -36.08208623,-115.1809241 -36.08207903,-115.1809241 -36.08207137,-115.1809242 -36.08206371,-115.1809242 -36.0820565,-115.1809242 -36.08204884,-115.1809243 -36.08204118,-115.1809243 -36.08203397,-115.1809244 -36.08202631,-115.1809244 -36.08201865,-115.1809245 -36.08201144,-115.1809245 -36.08200378,-115.1809245 -36.08199612,-115.1809246 -36.08198891,-115.1809246 -36.08198125,-115.1809247 -36.08197359,-115.1809247 -36.08196639,-115.1809248 -36.08195873,-115.1809248 -36.08195107,-115.1809249 -36.08194386,-115.1809249 -36.0819362,-115.1809249 -36.08192854,-115.180925 -36.08192133,-115.180925 -36.08191367,-115.1809251 -36.08190601,-115.1809251 -36.0818988,-115.1809252 -36.08189114,-115.1809252 -36.08188348,-115.1809252 -36.08187627,-115.1809253 -36.08186861,-115.1809253 -36.08186095,-115.1809254 -36.08185374,-115.1809254 -36.08184609,-115.1809255 -36.08183843,-115.1809255 -36.08183122,-115.1809256 -36.08182356,-115.1809256 -36.0818159,-115.1809256 -36.08180869,-115.1809257 -36.08180103,-115.1809257 -36.08179337,-115.1809258 -36.08178616,-115.1809258 -36.0817785,-115.1809259 -36.08177084,-115.1809259 -36.08176363,-115.1809259 -36.08175597,-115.180926 -36.08174831,-115.180926 -36.0817411,-115.1809261 -36.08173344,-115.1809261 -36.08172579,-115.1809262 -36.08171858,-115.1809262 -36.08171092,-115.1809263 -36.08170326,-115.1809263 -36.08169605,-115.1809263 -36.08168839,-115.1809264 -36.08168073,-115.1809264 -36.08167352,-115.1809265 -36.08166586,-115.1809265 -36.0816582,-115.1809266 -36.08165099,-115.1809266 -36.08164333,-115.1809266 -36.08163567,-115.1809267 -36.08162846,-115.1809267 -36.0816208,-115.1809268 -36.08161314,-115.1809268 -36.08160594,-115.1809269 -36.08159828,-115.1809269 -36.08159062,-115.180927 -36.08158341,-115.180927 -36.08157575,-115.180927 -36.08156809,-115.180927 -36.08156088,-115.1809269 -36.08155322,-115.1809269 -36.08154556,-115.1809269 -36.08153835,-115.1809269 -36.08153069,-115.1809269 -36.08152303,-115.1809269 -36.08151582,-115.1809268 -36.08150816,-115.1809268 -36.0815005,-115.1809268 -36.08149329,-115.1809268 -36.08148563,-115.1809268 -36.08147798,-115.1809268 -36.08147077,-115.1809267 -36.08146311,-115.1809267 -36.08145545,-115.1809267 -36.08144824,-115.1809267 -36.08144058,-115.1809267 -36.08143292,-115.1809266 -36.08142571,-115.1809266 -36.08141805,-115.1809266 -36.08141039,-115.1809266 -36.08140318,-115.1809266 -36.08139552,-115.1809266 -36.08138786,-115.1809265 -36.08138065,-115.1809265 -36.08137299,-115.1809265 -36.08136533,-115.1809265 -36.08135812,-115.1809265 -36.08135046,-115.1809264 -36.08134281,-115.1809264 -36.0813356,-115.1809264 -36.08132794,-115.1809264 -36.08132028,-115.1809264 -36.08131307,-115.1809264 -36.08130541,-115.1809263 -36.08129775,-115.1809263 -36.08129054,-115.1809263 -36.08128288,-115.1809263 -36.08127522,-115.1809263 -36.08126801,-115.1809263 -36.08126035,-115.1809262 -36.08125269,-115.1809262 -36.08124548,-115.1809262 -36.08123782,-115.1809262 -36.08123016,-115.1809262 -36.08122295,-115.1809261 -36.08121529,-115.1809261 -36.08120764,-115.1809261 -36.08120043,-115.1809261 -36.08119277,-115.1809261 -36.08118511,-115.1809261 -36.0811779,-115.180926 -36.08117024,-115.180926 -36.08116258,-115.180926 -36.08115537,-115.180926 -36.08114771,-115.180926 -36.08114005,-115.180926 -36.08113284,-115.1809259 -36.08112518,-115.1809259 -36.08111752,-115.1809259 -36.08111031,-115.1809259 -36.08110265,-115.1809259 -36.08109499,-115.1809258 -36.08108778,-115.1809258 -36.08108013,-115.1809258 -36.08107247,-115.1809258 -36.08106526,-115.1809258 -36.0810576,-115.1809258 -36.08104994,-115.1809257 -36.08104273,-115.1809257 -36.08103507,-115.1809257 -36.08102741,-115.1809257 -36.0810202,-115.1809257 -36.08101254,-115.1809257 -36.08100488,-115.1809256 -36.08099767,-115.1809256 -36.08099001,-115.1809256 -36.08098235,-115.1809256 -36.08097514,-115.1809256 -36.08096748,-115.1809255 -36.08095982,-115.1809255 -36.08095261,-115.1809255 -36.08094496,-115.1809255 -36.0809373,-115.1809255 -36.08093009,-115.1809255 -36.08092243,-115.1809254 -36.08091477,-115.1809254 -36.08090756,-115.1809254 -36.0808999,-115.1809254 -36.08089224,-115.1809254 -36.08088503,-115.1809253 -36.08087737,-115.1809253 -36.08086971,-115.1809253 -36.0808625,-115.1809253 -36.08085484,-115.1809253 -36.08084718,-115.1809253 -36.08083997,-115.1809252 -36.08083231,-115.1809252 -36.08082465,-115.1809252 -36.08081745,-115.1809252 -36.08080979,-115.1809252 -36.08080213,-115.1809252 -36.08079492,-115.1809251 -36.08078726,-115.1809251 -36.0807796,-115.1809251 -36.08077239,-115.1809251 -36.08076473,-115.1809251 -36.08075707,-115.180925 -36.08074986,-115.180925 -36.0807422,-115.180925 -36.08073454,-115.180925 -36.08072733,-115.180925 -36.08071967,-115.180925 -36.08071201,-115.1809249 -36.0807048,-115.1809249 -36.08069714,-115.1809249 -36.08068948,-115.1809249 -36.08068228,-115.1809249 -36.08067462,-115.1809249 -36.08066696,-115.1809248 -36.08065975,-115.1809248 -36.08065209,-115.1809248 -36.08064443,-115.1809248 -36.08063722,-115.1809248 -36.08062956,-115.1809247 -36.0806219,-115.1809247 -36.08061469,-115.1809247 -36.08060703,-115.1809247 -36.08059937,-115.1809247 -36.08059216,-115.1809247 -36.0805845,-115.1809246 -36.08057684,-115.1809246 -36.08056963,-115.1809246 -36.08056197,-115.1809246 -36.08055431,-115.1809246 -36.08054711,-115.1809245 -36.08053945,-115.1809245 -36.08053179,-115.1809245 -36.08052458,-115.1809245 -36.08051692,-115.1809245 -36.08050926,-115.1809245 -36.08050205,-115.1809244 -36.08049439,-115.1809244 -36.08048673,-115.1809244 -36.08047952,-115.1809244 -36.08047186,-115.1809244 -36.0804642,-115.1809244 -36.08045699,-115.1809243 -36.08044933,-115.1809243 -36.08044167,-115.1809243 -36.08043446,-115.1809243 -36.0804268,-115.1809243 -36.08041914,-115.1809242 -36.08041194,-115.1809242 -36.08040428,-115.1809242 -36.08039662,-115.1809242 -36.08038941,-115.1809242 -36.08038175,-115.1809242 -36.08037409,-115.1809241 -36.08036688,-115.1809241 -36.08035922,-115.1809241 -36.08035156,-115.1809241 -36.08034435,-115.1809241 -36.08033669,-115.1809241 -36.08032903,-115.180924 -36.08032182,-115.180924 -36.08031416,-115.180924 -36.0803065,-115.180924 -36.08029929,-115.180924 -36.08029163,-115.1809239 -36.08028397,-115.1809239 -36.08027677,-115.1809239 -36.08026911,-115.1809239 -36.08026145,-115.1809239 -36.08025424,-115.1809239 -36.08024658,-115.1809238 -36.08023892,-115.1809238 -36.08023171,-115.1809238 -36.08022405,-115.1809238 -36.08021639,-115.1809238 -36.08020918,-115.1809238 -36.08020152,-115.1809237 -36.08019386,-115.1809237 -36.08018665,-115.1809237 -36.08017899,-115.1809237 -36.08017133,-115.1809237 -36.08016412,-115.1809236 -36.08015646,-115.1809236 -36.0801488,-115.1809236 -36.0801416,-115.1809236 -36.08013394,-115.1809236 -36.08012628,-115.1809236 -36.08011907,-115.1809235 -36.08011141,-115.1809235 -36.08010375,-115.1809235 -36.08009654,-115.1809235 -36.08008888,-115.1809235 -36.08008122,-115.1809234 -36.08007401,-115.1809234 -36.08006635,-115.1809234 -36.08005869,-115.1809234 -36.08005148,-115.1809234 -36.08004382,-115.1809234 -36.08003616,-115.1809233 -36.08002895,-115.1809233 -36.08002129,-115.1809233 -36.08001363,-115.1809233 -36.08000643,-115.1809233 -36.07999877,-115.1809233 -36.07999111,-115.1809232 -36.0799839,-115.1809232 -36.07997624,-115.1809232 -36.07996858,-115.1809232 -36.07996137,-115.1809232 -36.07995371,-115.1809231 -36.07994605,-115.1809231 -36.07993884,-115.1809231 -36.07993118,-115.1809231 -36.07992352,-115.1809231 -36.07991631,-115.1809231 -36.07990865,-115.180923 -36.07990099,-115.180923 -36.07989378,-115.180923 -36.07988612,-115.180923 -36.07987846,-115.180923 -36.07987126,-115.180923 -36.0798636,-115.1809229 -36.07985594,-115.1809229 -36.07984873,-115.1809229 -36.07984107,-115.1809229 -36.07983341,-115.1809229 -36.0798262,-115.1809228 -36.07981854,-115.1809228 -36.07981088,-115.1809228 -36.07980367,-115.1809228 -36.07979601,-115.1809228 -36.07978835,-115.1809228 -36.07978114,-115.1809227 -36.07977348,-115.1809227 -36.07976582,-115.1809227 -36.07975861,-115.1809227 -36.07975095,-115.1809227 -36.07974329,-115.1809226 -36.07973609,-115.1809226 -36.07972843,-115.1809226 -36.07972077,-115.1809226 -36.07971356,-115.1809226 -36.0797059,-115.1809226 -36.07969824,-115.1809225 -36.07969103,-115.1809225 -36.07968337,-115.1809225 -36.07967571,-115.1809225 -36.0796685,-115.1809225 -36.07966084,-115.1809225 -36.07965318,-115.1809224 -36.07964597,-115.1809224 -36.07963831,-115.1809224 -36.07963065,-115.1809224 -36.07962344,-115.1809224 -36.07961578,-115.1809223 -36.07960812,-115.1809223 -36.07960092,-115.1809223 -36.07959326,-115.1809223 -36.0795856,-115.1809223 -36.07957839,-115.1809223 -36.07957073,-115.1809222 -36.07956307,-115.1809222 -36.07955586,-115.1809222 -36.0795482,-115.1809222 -36.07954054,-115.1809222 -36.07953333,-115.1809222 -36.07952567,-115.1809221 -36.07951801,-115.1809221 -36.0795108,-115.1809221 -36.07950314,-115.1809221 -36.07949548,-115.1809221 -36.07948827,-115.180922 -36.07948061,-115.180922 -36.07947295,-115.180922 -36.07946575,-115.180922 -36.07945809,-115.180922 -36.07945043,-115.180922 -36.07944322,-115.1809219 -36.07943556,-115.1809219 -36.0794279,-115.1809219 -36.07942069,-115.1809219 -36.07941303,-115.1809219 -36.07940537,-115.1809218 -36.07939816,-115.1809218 -36.0793905,-115.1809218 -36.07938284,-115.1809218 -36.07937563,-115.1809218 -36.07936797,-115.1809218 -36.07936031,-115.1809217 -36.0793531,-115.1809217 -36.07934544,-115.1809217 -36.07933779,-115.1809217 -36.07933058,-115.1809217 -36.07932292,-115.1809217 -36.07931526,-115.1809216 -36.07930805,-115.1809216 -36.07930039,-115.1809216 -36.07929273,-115.1809216 -36.07928552,-115.1809216 -36.07927786,-115.1809215 -36.0792702,-115.1809215 -36.07926299,-115.1809215 -36.07925533,-115.1809215 -36.07924767,-115.1809215 -36.07924046,-115.1809215 -36.0792328,-115.1809214 -36.07922514,-115.1809214 -36.07921793,-115.1809214 -36.07921027,-115.1809214 -36.07920262,-115.1809214 -36.07919541,-115.1809214 -36.07918775,-115.1809213 -36.07918009,-115.1809213 -36.07917288,-115.1809213 -36.07916522,-115.1809213 -36.07915756,-115.1809213 -36.07915035,-115.1809212 -36.07914269,-115.1809212 -36.07913503,-115.1809212 -36.07912782,-115.1809212 -36.07912016,-115.1809212 -36.0791125,-115.1809212 -36.07910529,-115.1809211 -36.07909763,-115.1809211 -36.07908997,-115.1809211 -36.07908276,-115.1809211 -36.0790751,-115.1809211 -36.07906745,-115.180921 -36.07906024,-115.180921 -36.07905258,-115.180921 -36.07904492,-115.180921 -36.07903771,-115.180921 -36.07903005,-115.180921 -36.07902239,-115.1809209 -36.07901518,-115.1809209 -36.07900752,-115.1809209 -36.07899986,-115.1809209 -36.07899265,-115.1809209 -36.07898499,-115.1809209 -36.07897733,-115.1809208 -36.07897012,-115.1809208 -36.07896246,-115.1809208 -36.0789548,-115.1809208 -36.07894759,-115.1809208 -36.07893993,-115.1809207 -36.07893228,-115.1809207 -36.07892507,-115.1809207 -36.07891741,-115.1809207 -36.07890975,-115.1809207 -36.07890254,-115.1809207 -36.07889488,-115.1809206 -36.07888722,-115.1809206 -36.07888001,-115.1809206 -36.07887235,-115.1809206 -36.07886469,-115.1809206 -36.07885748,-115.1809206 -36.07884982,-115.1809205 -36.07884216,-115.1809205 -36.07883495,-115.1809205 -36.07882729,-115.1809205 -36.07881963,-115.1809205 -36.07881242,-115.1809204 -36.07880476,-115.1809204 -36.07879711,-115.1809204 -36.0787899,-115.1809204 -36.07878224,-115.1809204 -36.07877458,-115.1809204 -36.07876737,-115.1809203 -36.07875971,-115.1809203 -36.07875205,-115.1809203 -36.07874484,-115.1809203 -36.07873718,-115.1809203 -36.07872952,-115.1809202 -36.07872231,-115.1809202 -36.07871465,-115.1809202 -36.07870699,-115.1809202 -36.07869978,-115.1809202 -36.07869212,-115.1809202 -36.07868446,-115.1809201 -36.07867725,-115.1809201 -36.07866959,-115.1809201 -36.07866194,-115.1809201 -36.07865473,-115.1809201 -36.07864707,-115.1809201 -36.07863941,-115.18092 -36.0786322,-115.18092 -36.07862454,-115.18092 -36.07861688,-115.1809202 -36.07860967,-115.1809203 -36.07860201,-115.1809205 -36.07859435,-115.1809206 -36.07858715,-115.1809208 -36.07857949,-115.1809209 -36.07857183,-115.1809211 -36.07856462,-115.1809213 -36.07855696,-115.1809214 -36.0785493,-115.1809216 -36.0785421,-115.1809217 -36.07853444,-115.1809219 -36.07852678,-115.1809221 -36.07851957,-115.1809222 -36.07851191,-115.1809224 -36.07850425,-115.1809226 -36.07849705,-115.1809227 -36.07848939,-115.1809229 -36.07848173,-115.180923 -36.07847452,-115.1809232 -36.07846686,-115.1809234 -36.0784592,-115.1809235 -36.078452,-115.1809237 -36.07844434,-115.1809238 -36.07843668,-115.180924 -36.07842947,-115.1809241 -36.07842181,-115.1809243 -36.07841415,-115.1809245 -36.07840695,-115.1809246 -36.07839929,-115.1809248 -36.07839163,-115.180925 -36.07838442,-115.1809251 -36.07837676,-115.1809253 -36.0783691,-115.1809254 -36.0783619,-115.1809256 -36.07835424,-115.1809258 -36.07834658,-115.1809259 -36.07833937,-115.1809261 -36.07833171,-115.1809262 -36.07832405,-115.1809264 -36.07831685,-115.1809266 -36.07830919,-115.1809267 -36.07830153,-115.1809269 -36.07829432,-115.180927 -36.07828666,-115.1809272 -36.078279,-115.1809274 -36.0782718,-115.1809275 -36.07826414,-115.1809277 -36.07825648,-115.1809278 -36.07824927,-115.180928 -36.07824161,-115.1809282 -36.07823395,-115.1809283 -36.07822675,-115.1809285 -36.07821909,-115.1809286 -36.07821143,-115.1809288 -36.07820422,-115.180929 -36.07819656,-115.1809291 -36.0781889,-115.1809293 -36.0781817,-115.1809294 -36.07817404,-115.1809296 -36.07816638,-115.1809298 -36.07815917,-115.1809299 -36.07815151,-115.1809301 -36.07814385,-115.1809302 -36.07813665,-115.1809304 -36.07812899,-115.1809306 -36.07812133,-115.1809307 -36.07811412,-115.1809309 -36.07810646,-115.180931 -36.0780988,-115.1809312 -36.0780916,-115.1809314 -36.07808394,-115.1809315 -36.07807628,-115.1809317 -36.07806907,-115.1809318 -36.07806141,-115.180932 -36.07805375,-115.1809322 -36.07804655,-115.1809323 -36.07803889,-115.1809325 -36.07803123,-115.1809326 -36.07802402,-115.1809328 -36.07801636,-115.180933 -36.0780087,-115.1809331 -36.0780015,-115.1809333 -36.07799384,-115.1809334 -36.07798618,-115.1809336 -36.07797897,-115.1809338 -36.07797131,-115.1809339 -36.07796365,-115.1809341 -36.07795645,-115.1809342 -36.07794879,-115.1809344 -36.07794113,-115.1809346 -36.07793392,-115.1809347 -36.07792626,-115.1809349 -36.0779186,-115.180935 -36.0779114,-115.1809352 -36.07790374,-115.1809354 -36.07789608,-115.1809355 -36.07788887,-115.1809357 -36.07788121,-115.1809358 -36.07787355,-115.180936 -36.07786635,-115.1809362 -36.07785869,-115.1809363 -36.07785103,-115.1809365 -36.07784382,-115.1809366 -36.07783616,-115.1809368 -36.0778285,-115.180937 -36.0778213,-115.1809371 -36.07781364,-115.1809373 -36.07780598,-115.1809375 -36.07779877,-115.1809376 -36.07779111,-115.1809378 -36.07778345,-115.1809379 -36.07777625,-115.1809381 -36.07776859,-115.1809382 -36.07776093,-115.1809384 -36.07775372,-115.1809386 -36.07774606,-115.1809387 -36.0777384,-115.1809389 -36.0777312,-115.180939 -36.07772354,-115.1809392 -36.07771588,-115.1809394 -36.07770867,-115.1809395 -36.07770101,-115.1809397 -36.07769335,-115.1809399 -36.07768615,-115.18094 -36.07767849,-115.1809402 -36.07767083,-115.1809403 -36.07766362,-115.1809405 -36.07765596,-115.1809407 -36.0776483,-115.1809408 -36.0776411,-115.180941 -36.07763344,-115.1809411 -36.07762578,-115.1809413 -36.07761857,-115.1809414 -36.07761091,-115.1809416 -36.07760325,-115.1809418 -36.07759605,-115.1809419 -36.07758839,-115.1809421 -36.07758073,-115.1809423 -36.07757352,-115.1809424 -36.07756586,-115.1809426 -36.0775582,-115.1809427 -36.077551,-115.1809429 -36.07754334,-115.1809431 -36.07753568,-115.1809432 -36.07752847,-115.1809434 -36.07752081,-115.1809435 -36.07751315,-115.1809437 -36.07750595,-115.1809439 -36.07749829,-115.180944 -36.07749063,-115.1809439 -36.07748342,-115.1809439 -36.07747576,-115.1809438 -36.0774681,-115.1809437 -36.07746089,-115.1809436 -36.07745323,-115.1809436 -36.07744557,-115.1809435 -36.07743836,-115.1809434 -36.0774307,-115.1809434 -36.07742305,-115.1809433 -36.07741584,-115.1809432 -36.07740818,-115.1809431 -36.07740052,-115.1809431 -36.07739331,-115.180943 -36.07738565,-115.1809429 -36.07737799,-115.1809428 -36.07737078,-115.1809428 -36.07736312,-115.1809427 -36.07735546,-115.1809426 -36.07734825,-115.1809426 -36.07734059,-115.1809425 -36.07733293,-115.1809424 -36.07732573,-115.1809424 -36.07731807,-115.1809423 -36.07731041,-115.1809422 -36.0773032,-115.1809421 -36.07729554,-115.1809421 -36.07728788,-115.180942 -36.07728067,-115.1809419 -36.07727301,-115.1809419 -36.07726535,-115.1809418 -36.07725814,-115.1809417 -36.07725048,-115.1809416 -36.07724282,-115.1809416 -36.07723562,-115.1809415 -36.07722796,-115.1809414 -36.0772203,-115.1809413 -36.07721309,-115.1809413 -36.07720543,-115.1809412 -36.07719777,-115.1809411 -36.07719056,-115.1809411 -36.0771829,-115.180941 -36.07717524,-115.1809409 -36.07716803,-115.1809409 -36.07716037,-115.1809408 -36.07715271,-115.1809407 -36.0771455,-115.1809406 -36.07713784,-115.1809406 -36.07713019,-115.1809405 -36.07712298,-115.1809404 -36.07711532,-115.1809404 -36.07710766,-115.1809403 -36.07710045,-115.1809402 -36.07709279,-115.1809401 -36.07708513,-115.1809401 -36.07707792,-115.18094 -36.07707026,-115.1809399 -36.0770626,-115.1809399 -36.07705539,-115.1809398 -36.07704773,-115.1809397 -36.07704007,-115.1809396 -36.07703287,-115.1809396 -36.07702521,-115.1809395 -36.07701755,-115.1809394 -36.07701034,-115.1809394 -36.07700268,-115.1809393 -36.07699502,-115.1809392 -36.07698781,-115.1809391 -36.07698015,-115.1809391 -36.07697249,-115.180939 -36.07696528,-115.1809389 -36.07695762,-115.1809389 -36.07694996,-115.1809388 -36.07694275,-115.1809387 -36.0769351,-115.1809386 -36.07692744,-115.1809386 -36.07692023,-115.1809385 -36.07691257,-115.1809384 -36.07690491,-115.1809384 -36.0768977,-115.1809383 -36.07689004,-115.1809382 -36.07688238,-115.1809381 -36.07687517,-115.1809381 -36.07686751,-115.180938 -36.07685985,-115.1809381 -36.07685264,-115.1809381 -36.07684498,-115.1809382 -36.07683732,-115.1809382 -36.07683012,-115.1809383 -36.07682246,-115.1809383 -36.0768148,-115.1809384 -36.07680759,-115.1809384 -36.07679993,-115.1809385 -36.07679227,-115.1809385 -36.07678506,-115.1809386 -36.0767774,-115.1809387 -36.07676974,-115.1809387 -36.07676253,-115.1809388 -36.07675487,-115.1809388 -36.07674721,-115.1809389 -36.07674,-115.1809389 -36.07673234,-115.180939 -36.07672468,-115.180939 -36.07671748,-115.1809391 -36.07670982,-115.1809391 -36.07670216,-115.1809392 -36.07669495,-115.1809392 -36.07668729,-115.1809393 -36.07667963,-115.1809394 -36.07667242,-115.1809394 -36.07666476,-115.1809395 -36.0766571,-115.1809395 -36.07664989,-115.1809396 -36.07664223,-115.1809396 -36.07663457,-115.1809397 -36.07662736,-115.1809397 -36.0766197,-115.1809398 -36.07661204,-115.1809398 -36.07660484,-115.1809399 -36.07659718,-115.18094 -36.07658952,-115.18094 -36.07658231,-115.1809401 -36.07657465,-115.1809401 -36.07656699,-115.1809402 -36.07655978,-115.1809402 -36.07655212,-115.1809403 -36.07654446,-115.1809403 -36.07653725,-115.1809404 -36.07652959,-115.1809404 -36.07652193,-115.1809405 -36.07651472,-115.1809405 -36.07650706,-115.1809406 -36.0764994,-115.1809407 -36.0764922,-115.1809407 -36.07648454,-115.1809408 -36.07647688,-115.1809408 -36.07646967,-115.1809409 -36.07646201,-115.1809409 -36.07645435,-115.180941 -36.07644714,-115.180941 -36.07643948,-115.1809411 -36.07643182,-115.1809411 -36.07642461,-115.1809412 -36.07641695,-115.1809413 -36.07640929,-115.1809413 -36.07640208,-115.1809414 -36.07639442,-115.1809414 -36.07638676,-115.1809415 -36.07637956,-115.1809415 -36.0763719,-115.1809416 -36.07636424,-115.1809416 -36.07635703,-115.1809417 -36.07634937,-115.1809417 -36.07634171,-115.1809418 -36.0763345,-115.1809418 -36.07632684,-115.1809419 -36.07631918,-115.180942 -36.07631197,-115.180942 -36.07630431,-115.1809421 -36.07629665,-115.1809421 -36.07628944,-115.1809422 -36.07628178,-115.1809422 -36.07627412,-115.1809423 -36.07626692,-115.1809423 -36.07625926,-115.1809424 -36.0762516,-115.1809424 -36.07624439,-115.1809425 -36.07623673,-115.1809426 -36.07622907,-115.1809426 -36.07622186,-115.1809427 -36.0762142,-115.1809427 -36.07620654,-115.1809428 -36.07619933,-115.1809428 -36.07619167,-115.1809429 -36.07618401,-115.1809429 -36.0761768,-115.180943 -36.07616914,-115.180943 -36.07616148,-115.1809431 -36.07615428,-115.1809431 -36.07614662,-115.1809432 -36.07613896,-115.1809433 -36.07613175,-115.1809433 -36.07612409,-115.1809434 -36.07611643,-115.1809434 -36.07610922,-115.1809435 -36.07610156,-115.1809435 -36.0760939,-115.1809436 -36.07608669,-115.1809436 -36.07607903,-115.1809437 -36.07607137,-115.1809437 -36.07606416,-115.1809438 -36.0760565,-115.1809439 -36.07604884,-115.1809439 -36.07604164,-115.180944 -36.07603398,-115.180944 -36.07602632,-115.1809441 -36.07601911,-115.1809441 -36.07601145,-115.1809442 -36.07600379,-115.1809442 -36.07599658,-115.1809443 -36.07598892,-115.1809443 -36.07598126,-115.1809444 -36.07597405,-115.1809444 -36.07596639,-115.1809445 -36.07595873,-115.1809446 -36.07595152,-115.1809446 -36.07594386,-115.1809447 -36.0759362,-115.1809447 -36.075929,-115.1809448 -36.07592134,-115.1809448 -36.07591368,-115.1809449 -36.07590647,-115.1809449 -36.07589881,-115.180945 -36.07589115,-115.180945 -36.07588394,-115.1809451 -36.07587628,-115.1809452 -36.07586862,-115.1809452 -36.07586141,-115.1809453 -36.07585375,-115.1809453 -36.07584609,-115.1809454 -36.07583888,-115.1809454 -36.07583122,-115.1809455 -36.07582356,-115.1809455 -36.07581636,-115.1809456 -36.0758087,-115.1809456 -36.07580104,-115.1809457 -36.07579383,-115.1809458 -36.07578617,-115.1809458 -36.07577851,-115.1809459 -36.0757713,-115.1809459 -36.07576364,-115.180946 -36.07575598,-115.180946 -36.07574877,-115.1809461 -36.07574111,-115.1809461 -36.07573345,-115.1809462 -36.07572624,-115.1809462 -36.07571858,-115.1809463 -36.07571092,-115.1809463 -36.07570372,-115.1809464 -36.07569606,-115.1809465 -36.0756884,-115.1809465 -36.07568119,-115.1809466 -36.07567353,-115.1809466 -36.07566587,-115.1809467 -36.07565866,-115.1809467 -36.075651,-115.1809468 -36.07564334,-115.1809468 -36.07563613,-115.1809469 -36.07562847,-115.1809469 -36.07562081,-115.180947 -36.0756136,-115.1809471 -36.07560594,-115.1809471 -36.07559828,-115.1809472 -36.07559108,-115.1809472 -36.07558342,-115.1809473 -36.07557576,-115.1809473 -36.07556855,-115.1809474 -36.07556089,-115.1809474 -36.07555323,-115.1809475 -36.07554602,-115.1809475 -36.07553836,-115.1809476 -36.0755307,-115.1809476 -36.07552349,-115.1809477 -36.07551583,-115.1809478 -36.07550817,-115.1809478 -36.07550096,-115.1809479 -36.0754933,-115.1809479 -36.07548564,-115.180948 -36.07547844,-115.180948 -36.07547078,-115.180948 -36.07546312,-115.1809481 -36.07545591,-115.1809481 -36.07544825,-115.1809481 -36.07544059,-115.1809482 -36.07543338,-115.1809482 -36.07542572,-115.1809482 -36.07541806,-115.1809482 -36.07541085,-115.1809483 -36.07540319,-115.1809483 -36.07539553,-115.1809483 -36.07538832,-115.1809484 -36.07538066,-115.1809484 -36.075373,-115.1809484 -36.07536579,-115.1809484 -36.07535813,-115.1809485 -36.07535047,-115.1809485 -36.07534327,-115.1809485 -36.07533561,-115.1809486 -36.07532795,-115.1809486 -36.07532074,-115.1809486 -36.07531308,-115.1809486 -36.07530542,-115.1809487 -36.07529821,-115.1809487 -36.07529055,-115.1809487 -36.07528289,-115.1809488 -36.07527568,-115.1809488 -36.07526802,-115.1809488 -36.07526036,-115.1809488 -36.07525315,-115.1809489 -36.07524549,-115.1809489 -36.07523783,-115.1809489 -36.07523062,-115.180949 -36.07522296,-115.180949 -36.07521531,-115.180949 -36.0752081,-115.180949 -36.07520044,-115.1809491 -36.07519278,-115.1809491 -36.07518557,-115.1809491 -36.07517791,-115.1809492 -36.07517025,-115.1809492 -36.07516304,-115.1809492 -36.07515538,-115.1809492 -36.07514772,-115.1809493 -36.07514051,-115.1809493 -36.07513285,-115.1809493 -36.07512519,-115.1809494 -36.07511798,-115.1809494 -36.07511032,-115.1809494 -36.07510266,-115.1809494 -36.07509545,-115.1809495 -36.07508779,-115.1809495 -36.07508014,-115.1809495 -36.07507293,-115.1809496 -36.07506527,-115.1809496 -36.07505761,-115.1809496 -36.0750504,-115.1809496 -36.07504274,-115.1809497 -36.07503508,-115.1809497 -36.07502787,-115.1809497 -36.07502021,-115.1809498 -36.07501255,-115.1809498 -36.07500534,-115.1809498 -36.07499768,-115.1809498 -36.07499002,-115.1809499 -36.07498281,-115.1809499 -36.07497515,-115.1809499 -36.07496749,-115.18095 -36.07496028,-115.18095 -36.07495263,-115.18095 -36.07494497,-115.18095 -36.07493776,-115.1809501 -36.0749301,-115.1809501 -36.07492244,-115.1809501 -36.07491523,-115.1809502 -36.07490757,-115.1809502 -36.07489991,-115.1809502 -36.0748927,-115.1809502 -36.07488504,-115.1809503 -36.07487738,-115.1809503 -36.07487017,-115.1809503 -36.07486251,-115.1809504 -36.07485485,-115.1809504 -36.07484764,-115.1809504 -36.07483998,-115.1809504 -36.07483232,-115.1809505 -36.07482512,-115.1809505 -36.07481746,-115.1809505 -36.0748098,-115.1809506 -36.07480259,-115.1809506 -36.07479493,-115.1809506 -36.07478727,-115.1809506 -36.07478006,-115.1809507 -36.0747724,-115.1809507 -36.07476474,-115.1809507 -36.07475753,-115.1809508 -36.07474987,-115.1809508 -36.07474221,-115.1809508 -36.074735,-115.1809508 -36.07472734,-115.1809509 -36.07471968,-115.1809509 -36.07471247,-115.1809509 -36.07470481,-115.180951 -36.07469715,-115.180951 -36.07468995,-115.180951 -36.07468229,-115.180951 -36.07467463,-115.1809511 -36.07466742,-115.1809511 -36.07465976,-115.1809511 -36.0746521,-115.1809512 -36.07464489,-115.1809512 -36.07463723,-115.1809512 -36.07462957,-115.1809513 -36.07462236,-115.1809513 -36.0746147,-115.1809513 -36.07460704,-115.1809513 -36.07459983,-115.1809514 -36.07459217,-115.1809514 -36.07458451,-115.1809514 -36.0745773,-115.1809514 -36.07456964,-115.1809515 -36.07456198,-115.1809515 -36.07455478,-115.1809515 -36.07454712,-115.1809516 -36.07453946,-115.1809516 -36.07453225,-115.1809516 -36.07452459,-115.1809517 -36.07451693,-115.1809517 -36.07450972,-115.1809517 -36.07450206,-115.1809517 -36.0744944,-115.1809518 -36.07448719,-115.1809518 -36.07447953,-115.1809518 -36.07447187,-115.1809519 -36.07446466,-115.1809519 -36.074457,-115.1809519 -36.07444934,-115.1809519 -36.07444213,-115.180952 -36.07443447,-115.180952 -36.07442681,-115.180952 -36.07441961,-115.1809521 -36.07441195,-115.1809521 -36.07440429,-115.1809521 -36.07439708,-115.1809521 -36.07438942,-115.1809522 -36.07438176,-115.1809522 -36.07437455,-115.1809522 -36.07436689,-115.1809523 -36.07435923,-115.1809523 -36.07435202,-115.1809523 -36.07434436,-115.1809523 -36.0743367,-115.1809524 -36.07432949,-115.1809524 -36.07432183,-115.1809524 -36.07431417,-115.1809525 -36.07430696,-115.1809525 -36.0742993,-115.1809525 -36.07429165,-115.1809525 -36.07428444,-115.1809526 -36.07427678,-115.1809526 -36.07426912,-115.1809526 -36.07426191,-115.1809527 -36.07425425,-115.1809527 -36.07424659,-115.1809527 -36.07423938,-115.1809527 -36.07423172,-115.1809528 -36.07422406,-115.1809528 -36.07421685,-115.1809528 -36.07420919,-115.1809529 -36.07420153,-115.1809529 -36.07419432,-115.1809529 -36.07418666,-115.1809529 -36.074179,-115.180953 -36.07417179,-115.180953 -36.07416413,-115.180953 -36.07415648,-115.1809531 -36.07414927,-115.1809531 -36.07414161,-115.1809531 -36.07413395,-115.1809531 -36.07412674,-115.1809532 -36.07411908,-115.1809532 -36.07411142,-115.1809532 -36.07410421,-115.1809533 -36.07409655,-115.1809533 -36.07408889,-115.1809533 -36.07408168,-115.1809533 -36.07407402,-115.1809534 -36.07406636,-115.1809534 -36.07405915,-115.1809534 -36.07405149,-115.1809535 -36.07404383,-115.1809535 -36.07403662,-115.1809535 -36.07402897,-115.1809535 -36.07402131,-115.1809536 -36.0740141,-115.1809536 -36.07400644,-115.1809536 -36.07399878,-115.1809537 -36.07399157,-115.1809537 -36.07398391,-115.1809537 -36.07397625,-115.1809537 -36.07396904,-115.1809538 -36.07396138,-115.1809538 -36.07395372,-115.1809538 -36.07394651,-115.1809539 -36.07393885,-115.1809539 -36.07393119,-115.1809539 -36.07392398,-115.1809539 -36.07391632,-115.180954 -36.07390866,-115.180954 -36.07390145,-115.180954 -36.0738938,-115.1809541 -36.07388614,-115.1809541 -36.07387893,-115.1809541 -36.07387127,-115.1809541 -36.07386361,-115.1809542 -36.0738564,-115.1809542 -36.07384874,-115.1809542 -36.07384108,-115.1809543 -36.07383387,-115.1809543 -36.07382621,-115.1809543 -36.07381855,-115.1809543 -36.07381134,-115.1809544 -36.07380368,-115.1809544 -36.07379602,-115.1809544 -36.07378881,-115.1809545 -36.07378115,-115.1809545 -36.07377349,-115.1809545 -36.07376629,-115.1809545 -36.07375863,-115.1809546 -36.07375097,-115.1809546 -36.07374376,-115.1809546 -36.0737361,-115.1809547 -36.07372844,-115.1809547 -36.07372123,-115.1809547 -36.07371357,-115.1809547 -36.07370591,-115.1809548 -36.0736987,-115.1809548 -36.07369104,-115.1809548 -36.07368338,-115.1809549 -36.07367617,-115.1809549 -36.07366851,-115.1809549 -36.07366085,-115.1809549 -36.07365364,-115.180955 -36.07364598,-115.180955 -36.07363832,-115.180955 -36.07363112,-115.1809551 -36.07362346,-115.1809551 -36.0736158,-115.1809551 -36.07360859,-115.1809551 -36.07360093,-115.1809552 -36.07359327,-115.1809552 -36.07358606,-115.1809552 -36.0735784,-115.1809553 -36.07357074,-115.1809553 -36.07356353,-115.1809553 -36.07355587,-115.1809553 -36.07354821,-115.1809554 -36.073541,-115.1809554 -36.07353334,-115.1809554 -36.07352568,-115.1809555 -36.07351847,-115.1809555 -36.07351081,-115.1809555 -36.07350315,-115.1809555 -36.07349595,-115.1809556 -36.07348829,-115.1809556 -36.07348063,-115.1809556 -36.07347342,-115.1809557 -36.07346576,-115.1809557 -36.0734581,-115.1809557 -36.07345089,-115.1809557 -36.07344323,-115.1809558 -36.07343557,-115.1809558 -36.07342836,-115.1809558 -36.0734207,-115.1809559 -36.07341304,-115.1809559 -36.07340583,-115.1809559 -36.07339817,-115.1809559 -36.07339051,-115.180956 -36.0733833,-115.180956 -36.07337564,-115.180956 -36.07336798,-115.180956 -36.07336078,-115.180956 -36.07335312,-115.180956 -36.07334546,-115.180956 -36.07333825,-115.180956 -36.07333059,-115.180956 -36.07332293,-115.1809559 -36.07331572,-115.1809559 -36.07330806,-115.1809559 -36.0733004,-115.1809559 -36.07329319,-115.1809559 -36.07328553,-115.1809559 -36.07327787,-115.1809559 -36.07327066,-115.1809559 -36.073263,-115.1809559 -36.07325534,-115.1809559 -36.07324813,-115.1809559 -36.07324047,-115.1809559 -36.07323281,-115.1809559 -36.07322561,-115.1809559 -36.07321795,-115.1809559 -36.07321029,-115.1809559 -36.07320308,-115.1809558 -36.07319542,-115.1809558 -36.07318776,-115.1809558 -36.07318055,-115.1809558 -36.07317289,-115.1809558 -36.07316523,-115.1809558 -36.07315802,-115.1809558 -36.07315036,-115.1809558 -36.0731427,-115.1809558 -36.07313549,-115.1809558 -36.07312783,-115.1809558 -36.07312017,-115.1809558 -36.07311296,-115.1809558 -36.0731053,-115.1809558 -36.07309764,-115.1809558 -36.07309043,-115.1809558 -36.07308278,-115.1809557 -36.07307512,-115.1809557 -36.07306791,-115.1809557 -36.07306025,-115.1809557 -36.07305259,-115.1809557 -36.07304538,-115.1809557 -36.07303772,-115.1809557 -36.07303006,-115.1809557 -36.07302285,-115.1809557 -36.07301519,-115.1809557 -36.07300753,-115.1809557 -36.07300032,-115.1809557 -36.07299266,-115.1809557 -36.072985,-115.1809557 -36.07297779,-115.1809557 -36.07297013,-115.1809557 -36.07296247,-115.1809556 -36.07295526,-115.1809556 -36.0729476,-115.1809556 -36.07293994,-115.1809556 -36.07293274,-115.1809556 -36.07292508,-115.1809556 -36.07291742,-115.1809556 -36.07291021,-115.1809556 -36.07290255,-115.1809556 -36.07289489,-115.1809556 -36.07288768,-115.1809556 -36.07288002,-115.1809556 -36.07287236,-115.1809556 -36.07286515,-115.1809556 -36.07285749,-115.1809556 -36.07284983,-115.1809556 -36.07284262,-115.1809555 -36.07283496,-115.1809555 -36.0728273,-115.1809555 -36.07282009,-115.1809555 -36.07281243,-115.1809555 -36.07280477,-115.1809555 -36.07279757,-115.1809555 -36.07278991,-115.1809555 -36.07278225,-115.1809555 -36.07277504,-115.1809555 -36.07276738,-115.1809555 -36.07275972,-115.1809555 -36.07275251,-115.1809555 -36.07274485,-115.1809555 -36.07273719,-115.1809555 -36.07272998,-115.1809555 -36.07272232,-115.1809554 -36.07271466,-115.1809554 -36.07270745,-115.1809554 -36.07269979,-115.1809554 -36.07269213,-115.1809554 -36.07268492,-115.1809554 -36.07267726,-115.1809554 -36.0726696,-115.1809554 -36.07266239,-115.1809554 -36.07265474,-115.1809554 -36.07264708,-115.1809554 -36.07263987,-115.1809554 -36.07263221,-115.1809554 -36.07262455,-115.1809554 -36.07261734,-115.1809554 -36.07260968,-115.1809554 -36.07260202,-115.1809553 -36.07259481,-115.1809553 -36.07258715,-115.1809553 -36.07257949,-115.1809553 -36.07257228,-115.1809553 -36.07256462,-115.1809553 -36.07255696,-115.1809553 -36.07254975,-115.1809553 -36.07254209,-115.1809553 -36.07253443,-115.1809553 -36.07252722,-115.1809553 -36.07251956,-115.1809553 -36.07251191,-115.1809553 -36.0725047,-115.1809553 -36.07249704,-115.1809553 -36.07248938,-115.1809552 -36.07248217,-115.1809552 -36.07247451,-115.1809552 -36.07246685,-115.1809552 -36.07245964,-115.1809552 -36.07245198,-115.1809552 -36.07244432,-115.1809552 -36.07243711,-115.1809552 -36.07242945,-115.1809552 -36.07242179,-115.1809552 -36.07241458,-115.1809552 -36.07240692,-115.1809552 -36.07239926,-115.1809552 -36.07239205,-115.1809552 -36.07238439,-115.1809552 -36.07237673,-115.1809552 -36.07236953,-115.1809551 -36.07236187,-115.1809551 -36.07235421,-115.1809551 -36.072347,-115.1809551 -36.07233934,-115.1809551 -36.07233168,-115.1809551 -36.07232447,-115.1809551 -36.07231681,-115.1809551 -36.07230915,-115.1809551 -36.07230194,-115.1809551 -36.07229428,-115.1809551 -36.07228662,-115.1809551 -36.07227941,-115.1809551 -36.07227175,-115.1809551 -36.07226409,-115.1809551 -36.07225688,-115.1809551 -36.07224922,-115.180955 -36.07224156,-115.180955 -36.07223436,-115.180955 -36.0722267,-115.180955 -36.07221904,-115.180955 -36.07221183,-115.180955 -36.07220417,-115.180955 -36.07219651,-115.180955 -36.0721893,-115.180955 -36.07218164,-115.180955 -36.07217398,-115.180955 -36.07216677,-115.180955 -36.07215911,-115.180955 -36.07215145,-115.180955 -36.07214424,-115.180955 -36.07213658,-115.180955 -36.07212892,-115.1809549 -36.07212171,-115.1809549 -36.07211405,-115.1809549 -36.07210639,-115.1809549 -36.07209918,-115.1809549 -36.07209152,-115.1809549 -36.07208387,-115.1809549 -36.07207666,-115.1809549 -36.072069,-115.1809549 -36.07206134,-115.1809549 -36.07205413,-115.1809549 -36.07204647,-115.1809549 -36.07203881,-115.1809549 -36.0720316,-115.1809549 -36.07202394,-115.1809549 -36.07201628,-115.1809549 -36.07200907,-115.1809548 -36.07200141,-115.1809548 -36.07199375,-115.1809548 -36.07198654,-115.1809548 -36.07197888,-115.1809548 -36.07197122,-115.1809548 -36.07196401,-115.1809548 -36.07195635,-115.1809548 -36.07194869,-115.1809548 -36.07194149,-115.1809548 -36.07193383,-115.1809548 -36.07192617,-115.1809548 -36.07191896,-115.1809548 -36.0719113,-115.1809548 -36.07190364,-115.1809548 -36.07189643,-115.1809548 -36.07188877,-115.1809547 -36.07188111,-115.1809547 -36.0718739,-115.1809547 -36.07186624,-115.1809547 -36.07185858,-115.1809547 -36.07185137,-115.1809547 -36.07184371,-115.1809547 -36.07183605,-115.1809547 -36.07182884,-115.1809547 -36.07182118,-115.1809547 -36.07181352,-115.1809547 -36.07180632,-115.1809547 -36.07179866,-115.1809547 -36.071791,-115.1809547 -36.07178379,-115.1809547 -36.07177613,-115.1809547 -36.07176847,-115.1809546 -36.07176126,-115.1809546 -36.0717536,-115.1809546 -36.07174594,-115.1809546 -36.07173873,-115.1809546 -36.07173107,-115.1809546 -36.07172341,-115.1809546 -36.0717162,-115.1809546 -36.07170854,-115.1809546 -36.07170088,-115.1809546 -36.07169367,-115.1809546 -36.07168601,-115.1809546 -36.07167835,-115.1809546 -36.07167114,-115.1809546 -36.07166348,-115.1809546 -36.07165583,-115.1809546 -36.07164862,-115.1809545 -36.07164096,-115.1809545 -36.0716333,-115.1809545 -36.07162609,-115.1809545 -36.07161843,-115.1809545 -36.07161077,-115.1809545 -36.07160356,-115.1809545 -36.0715959,-115.1809545 -36.07158824,-115.1809545 -36.07158103,-115.1809545 -36.07157337,-115.1809545 -36.07156571,-115.1809545 -36.0715585,-115.1809545 -36.07155084,-115.1809545 -36.07154318,-115.1809545 -36.07153597,-115.1809544 -36.07152831,-115.1809544 -36.07152065,-115.1809544 -36.07151345,-115.1809544 -36.07150579,-115.1809544 -36.07149813,-115.1809544 -36.07149092,-115.1809544 -36.07148326,-115.1809544 -36.0714756,-115.1809544 -36.07146839,-115.1809544 -36.07146073,-115.1809544 -36.07145307,-115.1809544 -36.07144586,-115.1809544 -36.0714382,-115.1809544 -36.07143054,-115.1809544 -36.07142333,-115.1809544 -36.07141567,-115.1809543 -36.07140801,-115.1809543 -36.0714008,-115.1809543 -36.07139314,-115.1809543 -36.07138548,-115.1809543 -36.07137828,-115.1809543 -36.07137062,-115.1809543 -36.07136296,-115.1809543 -36.07135575,-115.1809543 -36.07134809,-115.1809543 -36.07134043,-115.1809543 -36.07133322,-115.1809543 -36.07132556,-115.1809543 -36.0713179,-115.1809543 -36.07131069,-115.1809543 -36.07130303,-115.1809543 -36.07129537,-115.1809542 -36.07128816,-115.1809542 -36.0712805,-115.1809542 -36.07127284,-115.1809542 -36.07126563,-115.1809542 -36.07125797,-115.1809542 -36.07125031,-115.1809542 -36.0712431,-115.1809542 -36.07123544,-115.1809542 -36.07122779,-115.1809542 -36.07122058,-115.1809542 -36.07121292,-115.1809542 -36.07120526,-115.1809542 -36.07119805,-115.1809542 -36.07119039,-115.1809542 -36.07118273,-115.1809542 -36.07117552,-115.1809541 -36.07116786,-115.1809541 -36.0711602,-115.1809541 -36.07115299,-115.1809541 -36.07114533,-115.1809541 -36.07113767,-115.1809541 -36.07113046,-115.1809541 -36.0711228,-115.1809541 -36.07111514,-115.1809541 -36.07110793,-115.1809541 -36.07110027,-115.1809541 -36.07109261,-115.1809541 -36.07108541,-115.1809541 -36.07107775,-115.1809541 -36.07107009,-115.1809541 -36.07106288,-115.1809541 -36.07105522,-115.180954 -36.07104756,-115.180954 -36.07104035,-115.180954 -36.07103269,-115.180954 -36.07102503,-115.180954 -36.07101782,-115.180954 -36.07101016,-115.180954 -36.0710025,-115.180954 -36.07099529,-115.180954 -36.07098763,-115.180954 -36.07097997,-115.180954 -36.07097276,-115.180954 -36.0709651,-115.180954 -36.07095744,-115.180954 -36.07095024,-115.180954 -36.07094258,-115.180954 -36.07093492,-115.1809539 -36.07092771,-115.1809539 -36.07092005,-115.1809539 -36.07091239,-115.1809539 -36.07090518,-115.1809539 -36.07089752,-115.1809539 -36.07088986,-115.1809539 -36.07088265,-115.1809539 -36.07087499,-115.1809539 -36.07086733,-115.1809539 -36.07086012,-115.1809539 -36.07085246,-115.1809539 -36.0708448,-115.1809539 -36.07083759,-115.1809539 -36.07082993,-115.1809539 -36.07082227,-115.1809539 -36.07081506,-115.1809538 -36.0708074,-115.1809538 -36.07079975,-115.1809538 -36.07079254,-115.1809538 -36.07078488,-115.1809538 -36.07077722,-115.1809538 -36.07077001,-115.1809538 -36.07076235,-115.1809538 -36.07075469,-115.1809538 -36.07074748,-115.1809538 -36.07073982,-115.1809538 -36.07073216,-115.1809538 -36.07072495,-115.1809538 -36.07071729,-115.1809538 -36.07070963,-115.1809538 -36.07070242,-115.1809538 -36.07069476,-115.1809537 -36.0706871,-115.1809537 -36.07067989,-115.1809537 -36.07067223,-115.1809537 -36.07066457,-115.1809537 -36.07065737,-115.1809537 -36.07064971,-115.1809537 -36.07064205,-115.1809537 -36.07063484,-115.1809537 -36.07062718,-115.1809537 -36.07061952,-115.1809537 -36.07061231,-115.1809537 -36.07060465,-115.1809537 -36.07059699,-115.1809537 -36.07058978,-115.1809537 -36.07058212,-115.1809536 -36.07057446,-115.1809536 -36.07056725,-115.1809536 -36.07055959,-115.1809536 -36.07055193,-115.1809536 -36.07054472,-115.1809536 -36.07053706,-115.1809536 -36.0705294,-115.1809536 -36.0705222,-115.1809536 -36.07051454,-115.1809536 -36.07050688,-115.1809536 -36.07049967,-115.1809536 -36.07049201,-115.1809536 -36.07048435,-115.1809536 -36.07047714,-115.1809536 -36.07046948,-115.1809536 -36.07046182,-115.1809535 -36.07045461,-115.1809535 -36.07044695,-115.1809535 -36.07043929,-115.1809535 -36.07043208,-115.1809535 -36.07042442,-115.1809535 -36.07041676,-115.1809535 -36.07040955,-115.1809535 -36.07040189,-115.1809535 -36.07039423,-115.1809535 -36.07038702,-115.1809535 -36.07037936,-115.1809535 -36.07037171,-115.1809535 -36.0703645,-115.1809535 -36.07035684,-115.1809535 -36.07034918,-115.1809535 -36.07034197,-115.1809534 -36.07033431,-115.1809534 -36.07032665,-115.1809534 -36.07031944,-115.1809534 -36.07031178,-115.1809534 -36.07030412,-115.1809534 -36.07029691,-115.1809534 -36.07028925,-115.1809534 -36.07028159,-115.1809534 -36.07027438,-115.1809534 -36.07026672,-115.1809534 -36.07025906,-115.1809534 -36.07025185,-115.1809534 -36.07024419,-115.1809534 -36.07023653,-115.1809534 -36.07022933,-115.1809534 -36.07022167,-115.1809533 -36.07021401,-115.1809533 -36.0702068,-115.1809533 -36.07019914,-115.1809533 -36.07019148,-115.1809533 -36.07018427,-115.1809533 -36.07017661,-115.1809533 -36.07016895,-115.1809533 -36.07016174,-115.1809533 -36.07015408,-115.1809533 -36.07014642,-115.1809533 -36.07013921,-115.1809533 -36.07013155,-115.1809533 -36.07012389,-115.1809533 -36.07011668,-115.1809533 -36.07010902,-115.1809533 -36.07010136,-115.1809532 -36.07009415,-115.1809532 -36.0700865,-115.1809532 -36.07007884,-115.1809532 -36.07007163,-115.1809532 -36.07006397,-115.1809532 -36.07005631,-115.1809532 -36.0700491,-115.1809532 -36.07004144,-115.1809532 -36.07003378,-115.1809532 -36.07002657,-115.1809532 -36.07001891,-115.1809532 -36.07001125,-115.1809532 -36.07000404,-115.1809532 -36.06999638,-115.1809532 -36.06998872,-115.1809532 -36.06998151,-115.1809531 -36.06997385,-115.1809531 -36.06996619,-115.1809531 -36.06995898,-115.1809531 -36.06995132,-115.1809531 -36.06994366,-115.1809531 -36.06993646,-115.1809531 -36.0699288,-115.1809531 -36.06992114,-115.1809531 -36.06991393,-115.1809531 -36.06990627,-115.1809531 -36.06989861,-115.1809531 -36.0698914,-115.1809531 -36.06988374,-115.1809531 -36.06987608,-115.1809531 -36.06986887,-115.1809531 -36.06986121,-115.180953 -36.06985355,-115.180953 -36.06984634,-115.180953 -36.06983868,-115.180953 -36.06983102,-115.180953 -36.06982381,-115.180953 -36.06981615,-115.180953 -36.06980849,-115.180953 -36.06980144,-115.1809548 -36.06979396,-115.1809568 -36.06978647,-115.1809588 -36.06977943,-115.1809607 -36.06977195,-115.1809627 -36.06976447,-115.1809647 -36.06975742,-115.1809666 -36.06974994,-115.1809686 -36.06974246,-115.1809706 -36.06973541,-115.1809725 -36.06972793,-115.1809746 -36.06972045,-115.1809766 -36.0697134,-115.1809785 -36.06970592,-115.1809805 -36.06969844,-115.1809825 -36.0696914,-115.1809844 -36.06968391,-115.1809864 -36.06967643,-115.1809884 -36.06966939,-115.1809903 -36.0696619,-115.1809923 -36.06965442,-115.1809943 -36.06964738,-115.1809962 -36.0696399,-115.1809983 -36.06963241,-115.1810003 -36.06962537,-115.1810022 -36.06961789,-115.1810042 -36.0696104,-115.1810062 -36.06960336,-115.1810081 -36.06959588,-115.1810101 -36.06958839,-115.1810121 -36.06958135,-115.181014 -36.06957387,-115.181016 -36.06956639,-115.181018 -36.06955934,-115.1810199 -36.06955186,-115.181022 -36.06954438,-115.181024 -36.06953733,-115.1810259 -36.06952985,-115.1810279 -36.06952237,-115.1810299 -36.06951533,-115.1810318 -36.06950784,-115.1810338 -36.06950036,-115.1810358 -36.06949332,-115.1810377 -36.06948583,-115.1810397 -36.06947835,-115.1810418 -36.06947131,-115.1810436 -36.06946382,-115.1810457 -36.06945634,-115.1810477 -36.0694493,-115.1810496 -36.06944182,-115.1810516 -36.06943433,-115.1810536 -36.06942729,-115.1810555 -36.06941981,-115.1810575 -36.06941232,-115.1810595 -36.06940528,-115.1810614 -36.0693978,-115.1810634 -36.06939032,-115.1810655 -36.06938327,-115.1810673 -36.06937579,-115.1810694 -36.06936831,-115.1810714 -36.06936126,-115.1810733 -36.06935378,-115.1810753 -36.0693463,-115.1810773 -36.06933925,-115.1810792 -36.06933177,-115.1810812 -36.06932429,-115.1810832 -36.06931725,-115.1810851 -36.06930976,-115.1810871 -36.06930228,-115.1810892 -36.06929524,-115.1810911 -36.06928775,-115.1810931 -36.06928027,-115.1810951 -36.06927323,-115.181097 -36.06926575,-115.181099 -36.06925826,-115.181101 -36.06925122,-115.1811029 -36.06924374,-115.1811049 -36.06923625,-115.1811069 -36.06922921,-115.1811088 -36.06922173,-115.1811108 -36.06921424,-115.1811129 -36.0692072,-115.1811148 -36.06919972,-115.1811168 -36.06919224,-115.1811188 -36.06918519,-115.1811207 -36.06917771,-115.1811227 -36.06917023,-115.1811247 -36.06916318,-115.1811266 -36.0691557,-115.1811286 -36.06914822,-115.1811306 -36.06914118,-115.1811325 -36.06913369,-115.1811345 -36.06912621,-115.1811366 -36.06911917,-115.1811385 -36.06911168,-115.1811405 -36.0691042,-115.1811425 -36.06909716,-115.1811444 -36.06908967,-115.1811464 -36.06908219,-115.1811484 -36.06907515,-115.1811503 -36.06906767,-115.1811523 -36.06906018,-115.1811543 -36.06905314,-115.1811562 -36.06904566,-115.1811582 -36.06903817,-115.1811603 -36.06903113,-115.1811622 -36.06902365,-115.1811642 -36.06901617,-115.1811662 -36.06900912,-115.1811681 -36.06900164,-115.1811701 -36.06899416,-115.1811721 -36.06898711,-115.181174 -36.06897963,-115.181176 -36.06897215,-115.181178 -36.0689651,-115.1811799 -36.06895762,-115.1811819 -36.06895014,-115.181184 -36.0689431,-115.1811859 -36.06893561,-115.1811879 -36.06892813,-115.1811899 -36.06892109,-115.1811918 -36.0689136,-115.1811938 -36.06890612,-115.1811958 -36.06889908,-115.1811977 -36.06889182,-115.1812007 -36.06888461,-115.1812039 -36.06887782,-115.1812069 -36.06887061,-115.18121 -36.06886339,-115.1812132 -36.0688566,-115.1812162 -36.06884939,-115.1812194 -36.06884217,-115.1812225 -36.06883538,-115.1812255 -36.06882817,-115.1812287 -36.06882095,-115.1812318 -36.06881416,-115.1812348 -36.06880695,-115.181238 -36.06879973,-115.1812412 -36.06879294,-115.1812441 -36.06878573,-115.1812473 -36.06877851,-115.1812505 -36.06877172,-115.1812535 -36.06876451,-115.1812566 -36.06875729,-115.1812598 -36.0687505,-115.1812628 -36.06874329,-115.181266 -36.06873607,-115.1812691 -36.06872928,-115.1812721 -36.06872207,-115.1812753 -36.06871485,-115.1812784 -36.06870806,-115.1812814 -36.06870085,-115.1812846 -36.06869363,-115.1812878 -36.06868684,-115.1812907 -36.06867963,-115.1812939 -36.06867241,-115.1812971 -36.06866562,-115.1813001 -36.06865841,-115.1813032 -36.06865119,-115.1813064 -36.0686444,-115.1813094 -36.06863719,-115.1813126 -36.06862997,-115.1813157 -36.06862318,-115.1813187 -36.06861597,-115.1813219 -36.06860875,-115.181325 -36.06860196,-115.181328 -36.06859475,-115.1813312 -36.06858753,-115.1813344 -36.06858074,-115.1813373 -36.06857353,-115.1813405 -36.06856631,-115.1813437 -36.06855952,-115.1813467 -36.06855231,-115.1813498 -36.06854509,-115.181353 -36.0685383,-115.181356 -36.06853109,-115.1813592 -36.06852388,-115.1813623 -36.06851709,-115.1813653 -36.06850987,-115.1813685 -36.06850266,-115.1813716 -36.06849587,-115.1813746 -36.06848865,-115.1813778 -36.06848144,-115.181381 -36.06847465,-115.1813839 -36.06846743,-115.1813871 -36.06846022,-115.1813903 -36.06845343,-115.1813933 -36.06844621,-115.1813964 -36.068439,-115.1813996 -36.06843221,-115.1814026 -36.06842499,-115.1814058 -36.06841778,-115.1814089 -36.06841099,-115.1814119 -36.06840377,-115.1814151 -36.06839656,-115.1814182 -36.06838977,-115.1814212 -36.06838255,-115.1814244 -36.06837534,-115.1814276 -36.06836855,-115.1814305 -36.06836133,-115.1814337 -36.06835412,-115.1814369 -36.06834733,-115.1814399 -36.06834011,-115.181443 -36.0683329,-115.1814462 -36.06832611,-115.1814492 -36.06831889,-115.1814524 -36.06831168,-115.1814555 -36.06830489,-115.1814585 -36.06829767,-115.1814617 -36.06829046,-115.1814648 -36.06828367,-115.1814678 -36.06827645,-115.181471 -36.06826924,-115.1814742 -36.06826245,-115.1814771 -36.06825523,-115.1814803 -36.06824802,-115.1814835 -36.06824123,-115.1814865 -36.06823401,-115.1814896 -36.0682268,-115.1814928 -36.06822001,-115.1814958 -36.06821279,-115.181499 -36.06820558,-115.1815021 -36.06819879,-115.1815051 -36.06819158,-115.1815083 -36.06818436,-115.1815114 -36.06817757,-115.1815144 -36.06817036,-115.1815176 -36.06816314,-115.1815208 -36.06815635,-115.1815237 -36.06814914,-115.1815269 -36.06814192,-115.1815301 -36.06813513,-115.1815331 -36.06812792,-115.1815362 -36.0681207,-115.1815394 -36.06811391,-115.1815424 -36.0681067,-115.1815456 -36.06809948,-115.1815487 -36.06809269,-115.1815517 -36.06808548,-115.1815549 -36.06807826,-115.181558 -36.06807147,-115.181561 -36.06806426,-115.1815642 -36.06805704,-115.1815674 -36.06805025,-115.1815704 -36.06804304,-115.1815735 -36.06803582,-115.1815767 -36.06802903,-115.1815797 -36.06802182,-115.1815828 -36.0680146,-115.181586 -36.06800781,-115.181589 -36.0680006,-115.1815922 -36.06799338,-115.1815953 -36.06798659,-115.1815983 -36.06797938,-115.1816015 -36.06797216,-115.1816046 -36.06796537,-115.1816076 -36.06795816,-115.1816108 -36.06795094,-115.181614 -36.06794415,-115.181617 -36.06793694,-115.1816201 -36.06792972,-115.1816233 -36.06792293,-115.1816263 -36.06791582,-115.1816298 -36.06790883,-115.1816336 -36.06790225,-115.1816372 -36.06789526,-115.1816411 -36.06788828,-115.181645 -36.0678817,-115.1816486 -36.06787471,-115.1816525 -36.06786772,-115.1816563 -36.06786114,-115.1816599 -36.06785415,-115.1816638 -36.06784716,-115.1816677 -36.06784058,-115.1816713 -36.06783359,-115.1816752 -36.0678266,-115.181679 -36.06782002,-115.1816826 -36.06781303,-115.1816865 -36.06780605,-115.1816904 -36.06779947,-115.181694 -36.06779248,-115.1816979 -36.06778549,-115.1817017 -36.06777891,-115.1817054 -36.06777192,-115.1817092 -36.06776493,-115.1817131 -36.06775835,-115.1817167 -36.06775136,-115.1817206 -36.06774437,-115.1817244 -36.06773779,-115.1817281 -36.06773081,-115.1817319 -36.06772382,-115.1817358 -36.06771724,-115.1817394 -36.06771025,-115.1817433 -36.06770326,-115.1817471 -36.06769668,-115.1817508 -36.06768969,-115.1817546 -36.0676827,-115.1817585 -36.06767612,-115.1817621 -36.06766913,-115.181766 -36.06766214,-115.1817698 -36.06765557,-115.1817735 -36.06764858,-115.1817773 -36.06764159,-115.1817812 -36.06763501,-115.1817848 -36.06762802,-115.1817887 -36.06762103,-115.1817925 -36.06761445,-115.1817962 -36.06760746,-115.1818 -36.06760047,-115.1818039 -36.06759389,-115.1818075 -36.0675869,-115.1818114 -36.06757991,-115.1818152 -36.06757334,-115.1818189 -36.06756635,-115.1818227 -36.06755936,-115.1818266 -36.06755278,-115.1818302 -36.06754579,-115.1818341 -36.0675388,-115.1818379 -36.06753222,-115.1818416 -36.06752523,-115.1818454 -36.06751824,-115.1818493 -36.06751166,-115.1818529 -36.06750467,-115.1818568 -36.06749768,-115.1818606 -36.06749111,-115.1818643 -36.06748412,-115.1818681 -36.06747713,-115.181872 -36.06747055,-115.1818756 -36.06746356,-115.1818795 -36.06745657,-115.1818833 -36.06744999,-115.181887 -36.067443,-115.1818908 -36.06743601,-115.1818947 -36.06742943,-115.1818983 -36.06742244,-115.1819022 -36.06741545,-115.181906 -36.06740888,-115.1819097 -36.06740189,-115.1819135 -36.0673949,-115.1819174 -36.06738832,-115.181921 -36.06738133,-115.1819249 -36.06737434,-115.1819287 -36.06736776,-115.1819324 -36.06736077,-115.1819362 -36.06735378,-115.1819401 -36.0673472,-115.1819437 -36.06734021,-115.1819476 -36.06733323,-115.1819514 -36.06732665,-115.1819551 -36.06731966,-115.1819589 -36.06731267,-115.1819628 -36.06730609,-115.1819664 -36.0672991,-115.1819703 -36.06729211,-115.1819741 -36.06728553,-115.1819778 -36.06727854,-115.1819816 -36.06727155,-115.1819855 -36.06726503,-115.1819893 -36.06725824,-115.1819936 -36.06725145,-115.181998 -36.06724506,-115.1820021 -36.06723827,-115.1820065 -36.06723148,-115.1820108 -36.06722509,-115.1820149 -36.0672183,-115.1820193 -36.06721151,-115.1820237 -36.06720512,-115.1820278 -36.06719833,-115.1820322 -36.06719154,-115.1820365 -36.06718515,-115.1820406 -36.06717836,-115.182045 -36.06717157,-115.1820494 -36.06716518,-115.1820535 -36.06715839,-115.1820578 -36.0671516,-115.1820622 -36.06714521,-115.1820663 -36.06713842,-115.1820707 -36.06713163,-115.1820751 -36.06712524,-115.1820792 -36.06711845,-115.1820835 -36.06711166,-115.1820879 -36.06710527,-115.182092 -36.06709848,-115.1820964 -36.06709169,-115.1821007 -36.0670853,-115.1821048 -36.06707851,-115.1821092 -36.06707172,-115.1821136 -36.06706533,-115.1821177 -36.06705854,-115.1821221 -36.06705175,-115.1821264 -36.06704536,-115.1821305 -36.06703857,-115.1821349 -36.06703178,-115.1821393 -36.06702539,-115.1821434 -36.0670186,-115.1821477 -36.06701181,-115.1821521 -36.06700542,-115.1821562 -36.06699863,-115.1821606 -36.06699184,-115.1821649 -36.06698545,-115.1821691 -36.06697866,-115.1821734 -36.06697187,-115.1821778 -36.06696548,-115.1821819 -36.06695869,-115.1821863 -36.0669519,-115.1821906 -36.06694551,-115.1821947 -36.06693872,-115.1821991 -36.06693193,-115.1822035 -36.06692553,-115.1822076 -36.06691874,-115.182212 -36.06691195,-115.1822163 -36.06690556,-115.1822204 -36.06689877,-115.1822248 -36.06689198,-115.1822292 -36.06688559,-115.1822333 -36.0668788,-115.1822376 -36.06687201,-115.182242 -36.06686562,-115.1822461 -36.06685883,-115.1822505 -36.06685204,-115.1822548 -36.06684565,-115.182259 -36.06683886,-115.1822633 -36.06683207,-115.1822677 -36.06682568,-115.1822718 -36.06681889,-115.1822762 -36.0668121,-115.1822805 -36.06680571,-115.1822846 -36.06679892,-115.182289 -36.06679213,-115.1822934 -36.06678574,-115.1822975 -36.06677895,-115.1823018 -36.06677216,-115.1823062 -36.06676577,-115.1823103 -36.06675898,-115.1823147 -36.06675219,-115.1823191 -36.0667458,-115.1823232 -36.06673901,-115.1823275 -36.06673222,-115.1823319 -36.06672583,-115.182336 -36.06671904,-115.1823404 -36.06671225,-115.1823447 -36.06670586,-115.1823488 -36.06669907,-115.1823532 -36.06669228,-115.1823576 -36.06668589,-115.1823617 -36.0666791,-115.1823661 -36.06667231,-115.1823704 -36.06666592,-115.1823745 -36.06665913,-115.1823789 -36.06665234,-115.1823833 -36.06664595,-115.1823874 -36.06663916,-115.1823917 -36.06663237,-115.1823961 -36.06662598,-115.1824002 -36.06661919,-115.1824046 -36.0666124,-115.182409 -36.06660601,-115.1824131 -36.06659922,-115.1824174 -36.06659243,-115.1824218 -36.06658604,-115.1824259 -36.06657925,-115.1824303 -36.0665724,-115.1824345 -36.06656587,-115.1824383 -36.06655893,-115.1824423 -36.066552,-115.1824463 -36.06654547,-115.18245 -36.06653853,-115.182454 -36.06653159,-115.182458 -36.06652506,-115.1824618 -36.06651812,-115.1824658 -36.06651118,-115.1824698 -36.06650465,-115.1824735 -36.06649771,-115.1824775 -36.06649078,-115.1824815 -36.06648425,-115.1824853 -36.06647731,-115.1824893 -36.06647037,-115.1824933 -36.06646384,-115.182497 -36.0664569,-115.182501 -36.06644996,-115.182505 -36.06644343,-115.1825088 -36.06643649,-115.1825128 -36.06642956,-115.1825168 -36.06642303,-115.1825206 -36.06641609,-115.1825245 -36.06640915,-115.1825285 -36.06640262,-115.1825323 -36.06639568,-115.1825363 -36.06638874,-115.1825403 -36.06638221,-115.1825441 -36.06637527,-115.1825481 -36.06636834,-115.1825521 -36.06636181,-115.1825558 -36.06635487,-115.1825598 -36.06634793,-115.1825638 -36.0663414,-115.1825676 -36.06633446,-115.1825716 -36.06632752,-115.1825756 -36.06632099,-115.1825793 -36.06631405,-115.1825833 -36.06630712,-115.1825873 -36.06630059,-115.1825911 -36.06629365,-115.1825951 -36.06628671,-115.1825991 -36.06628018,-115.1826028 -36.06627324,-115.1826068 -36.0662663,-115.1826108 -36.06625977,-115.1826146 -36.06625283,-115.1826186 -36.0662459,-115.1826226 -36.06623937,-115.1826264 -36.06623243,-115.1826304 -36.06622549,-115.1826343 -36.06621896,-115.1826381 -36.06621202,-115.1826421 -36.06620507,-115.1826461 -36.06619851,-115.1826498 -36.06619154,-115.1826537 -36.06618457,-115.1826576 -36.06617801,-115.1826613 -36.06617104,-115.1826652 -36.06616407,-115.1826691 -36.0661575,-115.1826727 -36.06615053,-115.1826767 -36.06614356,-115.1826806 -36.066137,-115.1826842 -36.06613003,-115.1826882 -36.06612306,-115.1826921 -36.0661165,-115.1826957 -36.06610952,-115.1826996 -36.06610255,-115.1827036 -36.06609599,-115.1827072 -36.06608902,-115.1827111 -36.06608205,-115.182715 -36.06607549,-115.1827187 -36.06606851,-115.1827226 -36.06606154,-115.1827265 -36.06605498,-115.1827302 -36.06604801,-115.1827341 -36.06604104,-115.182738 -36.06603448,-115.1827417 -36.06602751,-115.1827456 -36.06602053,-115.1827495 -36.06601397,-115.1827532 -36.066007,-115.1827571 -36.06600003,-115.182761 -36.06599347,-115.1827647 -36.0659865,-115.1827686 -36.06597953,-115.1827725 -36.06597296,-115.1827762 -36.06596599,-115.1827801 -36.06595902,-115.182784 -36.06595246,-115.1827877 -36.06594549,-115.1827916 -36.06593852,-115.1827955 -36.06593196,-115.1827992 -36.06592498,-115.1828031 -36.06591801,-115.182807 -36.06591145,-115.1828107 -36.06590448,-115.1828146 -36.06589751,-115.1828185 -36.06589095,-115.1828222 -36.06588398,-115.1828261 -36.065877,-115.18283 -36.06587044,-115.1828337 -36.06586347,-115.1828376 -36.0658565,-115.1828415 -36.06584994,-115.1828452 -36.06584297,-115.1828491 -36.065836,-115.182853 -36.06582943,-115.1828567 -36.06582246,-115.1828606 -36.06581549,-115.1828645 -36.06580893,-115.1828682 -36.06580196,-115.1828721 -36.06579499,-115.182876 -36.06578843,-115.1828797 -36.06578145,-115.1828836 -36.06577448,-115.1828875 -36.06576792,-115.1828912 -36.06576095,-115.1828951 -36.06575398,-115.182899 -36.06574742,-115.1829026 -36.06574045,-115.1829066 -36.06573349,-115.1829105 -36.06572693,-115.1829142 -36.06571997,-115.1829181 -36.06571301,-115.1829221 -36.06570645,-115.1829258 -36.06569949,-115.1829297 -36.06569253,-115.1829336 -36.06568597,-115.1829373 -36.06567901,-115.1829412 -36.06567205,-115.1829452 -36.06566549,-115.1829489 -36.06565853,-115.1829528 -36.06565157,-115.1829567 -36.06564501,-115.1829604 -36.06563805,-115.1829644 -36.06563109,-115.1829683 -36.06562453,-115.182972 -36.06561757,-115.1829759 -36.06561061,-115.1829799 -36.06560405,-115.1829836 -36.06559709,-115.1829875 -36.06559013,-115.1829914 -36.06558357,-115.1829951 -36.06557661,-115.182999 -36.06556965,-115.183003 -36.06556309,-115.1830067 -36.06555613,-115.1830106 -36.06554917,-115.1830145 -36.06554261,-115.1830182 -36.06553565,-115.1830222 -36.06552869,-115.1830261 -36.06552213,-115.1830298 -36.06551517,-115.1830337 -36.06550821,-115.1830377 -36.06550165,-115.1830414 -36.06549469,-115.1830453 -36.06548773,-115.1830492 -36.06548117,-115.1830529 -36.06547421,-115.1830569 -36.06546725,-115.1830608 -36.06546069,-115.1830645 -36.06545373,-115.1830684 -36.06544677,-115.1830723 -36.06544021,-115.183076 -36.06543325,-115.18308 -36.06542629,-115.1830839 -36.06541973,-115.1830876 -36.06541277,-115.1830915 -36.06540581,-115.1830955 -36.06539925,-115.1830992 -36.06539229,-115.1831031 -36.06538533,-115.183107 -36.06537877,-115.1831107 -36.06537181,-115.1831147 -36.06536485,-115.1831186 -36.06535829,-115.1831223 -36.06535133,-115.1831262 -36.06534437,-115.1831301 -36.06533781,-115.1831338 -36.06533085,-115.1831378 -36.06532389,-115.1831417 -36.06531733,-115.1831454 -36.06531037,-115.1831493 -36.06530341,-115.1831533 -36.06529685,-115.183157 -36.06528989,-115.1831609 -36.06528293,-115.1831648 -36.06527637,-115.1831685 -36.06526941,-115.1831725 -36.06526245,-115.1831764 -36.06525589,-115.1831801 -36.06524893,-115.183184 -36.06524197,-115.1831879 -36.06523541,-115.1831916 -36.06522845,-115.1831956 -36.06522149,-115.1831995 -36.06521493,-115.1832032 -36.06520797,-115.1832071 -36.06520101,-115.1832111 -36.06519445,-115.1832148 -36.06518749,-115.1832187 -36.06518053,-115.1832226 -36.06517397,-115.1832263 -36.0651669,-115.1832299 -36.06515975,-115.1832333 -36.06515302,-115.1832365 -36.06514587,-115.1832399 -36.06513872,-115.1832433 -36.06513199,-115.1832464 -36.06512483,-115.1832498 -36.06511768,-115.1832532 -36.06511095,-115.1832564 -36.0651038,-115.1832598 -36.06509665,-115.1832631 -36.06508992,-115.1832663 -36.06508277,-115.1832697 -36.06507562,-115.1832731 -36.06506889,-115.1832763 -36.06506173,-115.1832796 -36.06505458,-115.183283 -36.06504785,-115.1832862 -36.0650407,-115.1832896 -36.06503355,-115.183293 -36.06502682,-115.1832961 -36.06501967,-115.1832995 -36.06501252,-115.1833029 -36.06500579,-115.1833061 -36.06499864,-115.1833095 -36.06499148,-115.1833128 -36.06498475,-115.183316 -36.0649776,-115.1833194 -36.06497045,-115.1833228 -36.06496372,-115.183326 -36.06495657,-115.1833293 -36.06494942,-115.1833327 -36.06494269,-115.1833359 -36.06493554,-115.1833393 -36.06492839,-115.1833427 -36.06492165,-115.1833458 -36.0649145,-115.1833492 -36.06490735,-115.1833526 -36.06490062,-115.1833558 -36.06489347,-115.1833592 -36.06488632,-115.1833625 -36.06487959,-115.1833657 -36.06487221,-115.1833683 -36.06486482,-115.1833707 -36.06485786,-115.183373 -36.06485046,-115.1833755 -36.06484307,-115.183378 -36.06483611,-115.1833803 -36.06482872,-115.1833827 -36.06482132,-115.1833852 -36.06481436,-115.1833875 -36.06480697,-115.18339 -36.06479957,-115.1833924 -36.06479261,-115.1833947 -36.06478522,-115.1833972 -36.06477782,-115.1833997 -36.06477086,-115.183402 -36.06476347,-115.1834044 -36.06475607,-115.1834069 -36.06474911,-115.1834092 -36.06474172,-115.1834117 -36.06473432,-115.1834141 -36.06472736,-115.1834164 -36.06471997,-115.1834189 -36.06471258,-115.1834214 -36.06470562,-115.1834237 -36.06469822,-115.1834261 -36.06469083,-115.1834286 -36.06468387,-115.1834309 -36.06467647,-115.1834334 -36.06466908,-115.1834358 -36.06466212,-115.1834381 -36.06465472,-115.1834406 -36.06464733,-115.1834431 -36.06464037,-115.1834454 -36.06463297,-115.1834478 -36.06462558,-115.1834503 -36.06461862,-115.1834526 -36.06461122,-115.1834551 -36.06460383,-115.1834575 -36.06459687,-115.1834598 -36.06458947,-115.1834623 -36.06458208,-115.1834648 -36.06457512,-115.1834671 -36.06456773,-115.1834695 -36.06456033,-115.183472 -36.06455337,-115.1834743 -36.06454598,-115.1834768 -36.06453858,-115.1834792 -36.06453162,-115.1834815 -36.06452423,-115.183484 -36.06451683,-115.1834865 -36.06450987,-115.1834888 -36.06450248,-115.1834912 -36.06449508,-115.1834937 -36.06448812,-115.183496 -36.06448073,-115.1834985 -36.06447333,-115.1835009 -36.06446637,-115.1835032 -36.06445898,-115.1835057 -36.06445159,-115.1835082 -36.06444463,-115.1835105 -36.06443723,-115.1835129 -36.06442984,-115.1835154 -36.06442288,-115.1835177 -36.06441548,-115.1835202 -36.06440791,-115.1835211 -36.0644007,-115.1835211 -36.06439304,-115.1835212 -36.06438538,-115.1835213 -36.06437818,-115.1835214 -36.06437052,-115.1835215 -36.06436286,-115.1835216 -36.06435565,-115.1835217 -36.06434799,-115.1835218 -36.06434033,-115.1835219 -36.06433312,-115.183522 -36.06432546,-115.1835221 -36.0643178,-115.1835222 -36.06431059,-115.1835222 -36.06430293,-115.1835223 -36.06429528,-115.1835224 -36.06428807,-115.1835225 -36.06428041,-115.1835226 -36.06427275,-115.1835227 -36.06426554,-115.1835228 -36.06425788,-115.1835229 -36.06425067,-115.183523 -36.06424301,-115.1835231 -36.06423535,-115.1835232 -36.06422814,-115.1835232 -36.06422049,-115.1835233 -36.06421283,-115.1835234 -36.06420562,-115.1835235 -36.06419796,-115.1835236 -36.0641903,-115.1835237 -36.06418309,-115.1835238 -36.06417543,-115.1835239 -36.06416777,-115.183524 -36.06416056,-115.1835241 -36.0641529,-115.1835242 -36.06414524,-115.1835243 -36.06413804,-115.1835243 -36.06413038,-115.1835244 -36.06412272,-115.1835245 -36.06411551,-115.1835246 -36.06410785,-115.1835247 -36.06410019,-115.1835248 -36.06409298,-115.1835249 -36.06408532,-115.183525 -36.06407766,-115.1835251 -36.06407045,-115.1835252 -36.0640628,-115.1835253 -36.06405514,-115.1835254 -36.06404793,-115.1835254 -36.06404027,-115.1835255 -36.06403261,-115.1835256 -36.0640254,-115.1835257 -36.06401774,-115.1835258 -36.06401008,-115.1835259 -36.06400287,-115.183526 -36.06399522,-115.1835257 -36.06398757,-115.1835253 -36.06398036,-115.1835249 -36.06397271,-115.1835246 -36.06396506,-115.1835242 -36.06395785,-115.1835238 -36.0639502,-115.1835235 -36.06394254,-115.1835231 -36.06393534,-115.1835227 -36.06392769,-115.1835223 -36.06392003,-115.183522 -36.06391283,-115.1835216 -36.06390518,-115.1835212 -36.06389752,-115.1835209 -36.06389032,-115.1835205 -36.06388267,-115.1835201 -36.06387501,-115.1835198 -36.06386781,-115.1835194 -36.06386016,-115.183519 -36.0638525,-115.1835186 -36.0638453,-115.1835183 -36.06383765,-115.1835179 -36.06382999,-115.1835175 -36.06382279,-115.1835172 -36.06381514,-115.1835168 -36.06380748,-115.1835164 -36.06380028,-115.1835161 -36.06379263,-115.1835157 -36.06378497,-115.1835153 -36.06377777,-115.183515 -36.06377012,-115.1835146 -36.06376246,-115.1835142 -36.06375526,-115.1835139 -36.06374761,-115.1835135 -36.06373995,-115.1835131 -36.06373275,-115.1835127 -36.0637251,-115.1835124 -36.06371744,-115.183512 -36.06371024,-115.1835116 -36.06370258,-115.1835113 -36.06369493,-115.1835109 -36.06368773,-115.1835105 -36.06368007,-115.1835102 -36.06367242,-115.1835098 -36.06366522,-115.1835094 -36.06365756,-115.183509 -36.06364991,-115.1835087 -36.06364271,-115.1835083 -36.06363505,-115.1835079 -36.0636274,-115.1835076 -36.0636202,-115.1835072 -36.06361254,-115.1835068 -36.06360489,-115.1835065 -36.06359769,-115.1835061 -36.06359003,-115.1835057 -36.06358238,-115.1835053 -36.06357518,-115.183505 -36.06356752,-115.1835046 -36.06355987,-115.1835042 -36.06355271,-115.1835035 -36.06354518,-115.1835017 -36.06353765,-115.1835 -36.06353057,-115.1834983 -36.06352304,-115.1834966 -36.06351551,-115.1834948 -36.06350843,-115.1834932 -36.0635009,-115.1834914 -36.06349337,-115.1834897 -36.06348629,-115.1834881 -36.06347876,-115.1834863 -36.06347123,-115.1834846 -36.06346415,-115.1834829 -36.06345662,-115.1834812 -36.0634491,-115.1834794 -36.06344201,-115.1834778 -36.06343448,-115.183476 -36.06342696,-115.1834743 -36.06341987,-115.1834726 -36.06341235,-115.1834709 -36.06340482,-115.1834691 -36.06339773,-115.1834675 -36.06339021,-115.1834658 -36.06338268,-115.183464 -36.0633756,-115.1834624 -36.06336807,-115.1834606 -36.06336054,-115.1834589 -36.06335346,-115.1834572 -36.06334593,-115.1834555 -36.0633384,-115.1834537 -36.06333132,-115.1834521 -36.06332379,-115.1834503 -36.06331626,-115.1834486 -36.06330918,-115.1834469 -36.06330165,-115.1834452 -36.06329413,-115.1834435 -36.06328704,-115.1834418 -36.06327951,-115.1834401 -36.06327199,-115.1834383 -36.0632649,-115.1834367 -36.06325745,-115.1834345 -36.06325003,-115.1834322 -36.06324306,-115.1834299 -36.06323564,-115.1834276 -36.06322823,-115.1834252 -36.06322125,-115.1834229 -36.06321384,-115.1834206 -36.06320643,-115.1834182 -36.06319945,-115.183416 -36.06319204,-115.1834136 -36.06318463,-115.1834112 -36.06317765,-115.183409 -36.06317024,-115.1834066 -36.06316282,-115.1834042 -36.06315585,-115.183402 -36.06314844,-115.1833996 -36.06314102,-115.1833972 -36.06313405,-115.183395 -36.06312663,-115.1833926 -36.06311922,-115.1833902 -36.06311224,-115.183388 -36.06310483,-115.1833856 -36.06309742,-115.1833832 -36.06309044,-115.183381 -36.06308303,-115.1833786 -36.06307562,-115.1833763 -36.06306864,-115.183374 -36.06306123,-115.1833716 -36.06305381,-115.1833693 -36.06304684,-115.183367 -36.06303943,-115.1833647 -36.06303201,-115.1833623 -36.06302504,-115.18336 -36.06301762,-115.1833577 -36.06301021,-115.1833553 -36.06300323,-115.1833531 -36.06299582,-115.1833507 -36.06298841,-115.1833483 -36.06298143,-115.1833461 -36.06297402,-115.1833437 -36.06296661,-115.1833413 -36.06295963,-115.1833391 -36.06295222,-115.1833367 -36.0629448,-115.1833343 -36.06293783,-115.1833321 -36.06293042,-115.1833297 -36.062923,-115.1833273 -36.06291603,-115.1833251 -36.06290861,-115.1833227 -36.0629012,-115.1833203 -36.06289422,-115.1833181 -36.06288681,-115.1833157 -36.0628794,-115.1833134 -36.06287242,-115.1833111 -36.06286501,-115.1833087 -36.0628576,-115.1833064 -36.06285062,-115.1833041 -36.06284321,-115.1833018 -36.06283579,-115.1832994 -36.06282882,-115.1832971 -36.06282141,-115.1832948 -36.06281432,-115.1832913 -36.06280781,-115.1832875 -36.06280089,-115.1832834 -36.06279396,-115.1832794 -36.06278745,-115.1832756 -36.06278053,-115.1832716 -36.0627736,-115.1832675 -36.06276709,-115.1832637 -36.06276017,-115.1832597 -36.06275324,-115.1832556 -36.06274673,-115.1832518 -36.06273981,-115.1832478 -36.06273288,-115.1832438 -36.06272637,-115.18324 -36.06271945,-115.1832359 -36.06271252,-115.1832319 -36.06270601,-115.1832281 -36.06269909,-115.183224 -36.06269216,-115.18322 -36.06268565,-115.1832162 -36.06267873,-115.1832122 -36.0626718,-115.1832081 -36.06266529,-115.1832043 -36.06265837,-115.1832003 -36.06265144,-115.1831963 -36.06264523,-115.1831917 -36.06263866,-115.1831869 -36.06263209,-115.1831821 -36.0626259,-115.1831775 -36.06261933,-115.1831727 -36.06261276,-115.1831678 -36.06260657,-115.1831632 -36.0626,-115.1831584 -36.06259343,-115.1831536 -36.06258724,-115.183149 -36.06258067,-115.1831442 -36.0625741,-115.1831393 -36.06256791,-115.1831347 -36.06256134,-115.1831299 -36.06255477,-115.1831251 -36.06254858,-115.1831205 -36.06254201,-115.1831157 -36.06253544,-115.1831108 -36.06252925,-115.1831062 -36.06252268,-115.1831014 -36.06251611,-115.1830966 -36.06250992,-115.183092 -36.06250335,-115.1830872 -36.06249678,-115.1830823 -36.06249059,-115.1830777 -36.06248402,-115.1830729 -36.06247745,-115.1830681 -36.06247126,-115.1830635 -36.06246469,-115.1830587 -36.06245812,-115.1830538 -36.06245193,-115.1830492 -36.06244536,-115.1830444 -36.06243879,-115.1830396 -36.0624326,-115.183035 -36.06242603,-115.1830302 -36.06241946,-115.1830253 -36.06241327,-115.1830207 -36.0624067,-115.1830159 -36.06240013,-115.1830111 -36.06239394,-115.1830065 -36.06238737,-115.1830017 -36.0623808,-115.1829968 -36.06237461,-115.1829922 -36.06236804,-115.1829874 -36.06236147,-115.1829826 -36.06235549,-115.1829776 -36.06234943,-115.1829718 -36.06234337,-115.1829661 -36.06233767,-115.1829606 -36.06233161,-115.1829549 -36.06232555,-115.1829491 -36.06231985,-115.1829437 -36.06231378,-115.1829379 -36.06230772,-115.1829321 -36.06230202,-115.1829267 -36.06229596,-115.1829209 -36.0622899,-115.1829152 -36.0622842,-115.1829097 -36.06227814,-115.182904 -36.06227208,-115.1828982 -36.06226637,-115.1828928 -36.06226031,-115.182887 -36.06225425,-115.1828812 -36.06224855,-115.1828758 -36.06224249,-115.18287 -36.06223643,-115.1828643 -36.06223072,-115.1828588 -36.06222466,-115.1828531 -36.0622186,-115.1828473 -36.0622129,-115.1828419 -36.06220684,-115.1828361 -36.06220078,-115.1828303 -36.06219507,-115.1828249 -36.06218901,-115.1828191 -36.06218295,-115.1828134 -36.06217725,-115.1828079 -36.06217119,-115.1828022 -36.06216513,-115.1827964 -36.06215943,-115.182791 -36.06215337,-115.1827852 -36.06214731,-115.1827794 -36.0621416,-115.182774 -36.06213554,-115.1827682 -36.06212948,-115.1827624 -36.06212378,-115.182757 -36.06211772,-115.1827513 -36.06211166,-115.1827455 -36.06210616,-115.1827398 -36.06210069,-115.1827332 -36.06209523,-115.1827265 -36.06209009,-115.1827203 -36.06208463,-115.1827137 -36.06207917,-115.1827071 -36.06207403,-115.1827009 -36.06206857,-115.1826942 -36.0620631,-115.1826876 -36.06205796,-115.1826814 -36.0620525,-115.1826748 -36.06204704,-115.1826682 -36.0620419,-115.182662 -36.06203644,-115.1826553 -36.06203098,-115.1826487 -36.06202584,-115.1826425 -36.06202037,-115.1826359 -36.06201491,-115.1826293 -36.06200977,-115.182623 -36.06200431,-115.1826164 -36.06199885,-115.1826098 -36.06199371,-115.1826036 -36.06198825,-115.182597 -36.06198278,-115.1825904 -36.06197764,-115.1825841 -36.06197218,-115.1825775 -36.06196672,-115.1825709 -36.06196158,-115.1825647 -36.06195612,-115.1825581 -36.06195066,-115.1825515 -36.06194552,-115.1825452 -36.06194005,-115.1825386 -36.06193459,-115.182532 -36.06192945,-115.1825258 -36.06192399,-115.1825192 -36.06191853,-115.1825125 -36.06191339,-115.1825063 -36.06190793,-115.1824997 -36.06190247,-115.1824931 -36.06189732,-115.1824869 -36.06189186,-115.1824803 -36.0618869,-115.1824731 -36.06188248,-115.1824661 -36.06187778,-115.1824586 -36.06187308,-115.1824512 -36.06186865,-115.1824442 -36.06186395,-115.1824367 -36.06185925,-115.1824293 -36.06185482,-115.1824223 -36.06185012,-115.1824148 -36.06184542,-115.1824074 -36.061841,-115.1824004 -36.0618363,-115.1823929 -36.06183159,-115.1823855 -36.06182717,-115.1823785 -36.06182247,-115.182371 -36.06181777,-115.1823636 -36.06181334,-115.1823566 -36.06180864,-115.1823491 -36.06180394,-115.1823417 -36.06179952,-115.1823346 -36.06179481,-115.1823272 -36.06179011,-115.1823198 -36.06178569,-115.1823127 -36.06178099,-115.1823053 -36.06177629,-115.1822978 -36.06177186,-115.1822908 -36.06176716,-115.1822834 -36.06176246,-115.1822759 -36.06175803,-115.1822689 -36.06175333,-115.1822615 -36.06174863,-115.182254 -36.06174421,-115.182247 -36.06173951,-115.1822396 -36.0617348,-115.1822321 -36.06173038,-115.1822251 -36.06172568,-115.1822177 -36.06172098,-115.1822102 -36.06171655,-115.1822032 -36.06171187,-115.1821957 -36.06170774,-115.1821878 -36.06170385,-115.1821803 -36.06169972,-115.1821724 -36.06169559,-115.1821644 -36.0616917,-115.182157 -36.06168756,-115.182149 -36.06168343,-115.1821411 -36.06167954,-115.1821336 -36.06167541,-115.1821257 -36.06167128,-115.1821177 -36.06166739,-115.1821102 -36.06166326,-115.1821023 -36.06165913,-115.1820944 -36.06165524,-115.1820869 -36.06165111,-115.1820789 -36.06164698,-115.182071 -36.06164309,-115.1820635 -36.06163895,-115.1820556 -36.06163482,-115.1820476 -36.06163093,-115.1820401 -36.0616268,-115.1820322 -36.06162267,-115.1820243 -36.06161878,-115.1820168 -36.06161465,-115.1820088 -36.06161052,-115.1820009 -36.06160663,-115.1819934 -36.0616025,-115.1819855 -36.06159837,-115.1819775 -36.06159448,-115.1819701 -36.06159034,-115.1819621 -36.06158621,-115.1819542 -36.06158232,-115.1819467 -36.06157819,-115.1819387 -36.06157406,-115.1819308 -36.06157017,-115.1819233 -36.06156678,-115.1819149 -36.06156342,-115.1819064 -36.06156026,-115.1818984 -36.0615569,-115.1818899 -36.06155354,-115.1818815 -36.06155037,-115.1818735 -36.06154701,-115.181865 -36.06154365,-115.1818565 -36.06154049,-115.1818485 -36.06153713,-115.1818401 -36.06153377,-115.1818316 -36.06153061,-115.1818236 -36.06152725,-115.1818151 -36.06152389,-115.1818067 -36.06152073,-115.1817987 -36.06151737,-115.1817902 -36.06151401,-115.1817817 -36.06151084,-115.1817737 -36.06150748,-115.1817653 -36.06150412,-115.1817568 -36.06150096,-115.1817488 -36.0614976,-115.1817403 -36.06149424,-115.1817319 -36.06149108,-115.1817239 -36.06148772,-115.1817154 -36.06148436,-115.1817069 -36.0614812,-115.1816989 -36.06147784,-115.1816905 -36.06147448,-115.181682 -36.06147131,-115.181674 -36.06146795,-115.1816655 -36.06146459,-115.181657 -36.06146143,-115.1816491 -36.06145807,-115.1816406 -36.06145471,-115.1816321 -36.06145155,-115.1816241 -36.06144819,-115.1816157 -36.06144483,-115.1816072 -36.06144166,-115.1815992 -36.06143865,-115.1815905 -36.06143598,-115.1815817 -36.06143347,-115.1815734 -36.06143079,-115.1815645 -36.06142812,-115.1815557 -36.06142561,-115.1815474 -36.06142294,-115.1815385 -36.06142027,-115.1815297 -36.06141775,-115.1815214 -36.06141508,-115.1815125 -36.06141241,-115.1815037 -36.06140989,-115.1814954 -36.06140722,-115.1814865 -36.06140455,-115.1814777 -36.06140204,-115.1814694 -36.06139936,-115.1814605 -36.06139669,-115.1814517 -36.06139418,-115.1814434 -36.06139151,-115.1814345 -36.06138884,-115.1814257 -36.06138632,-115.1814173 -36.06138365,-115.1814085 -36.06138098,-115.1813997 -36.06137846,-115.1813913 -36.06137579,-115.1813825 -36.06137312,-115.1813737 -36.06137061,-115.1813653 -36.06136793,-115.1813565 -36.06136526,-115.1813477 -36.06136275,-115.1813393 -36.06136008,-115.1813305 -36.06135741,-115.1813217 -36.06135489,-115.1813133 -36.06135222,-115.1813045 -36.06134955,-115.1812956 -36.06134703,-115.1812873 -36.06134436,-115.1812785 -36.06134169,-115.1812696 -36.06133918,-115.1812613 -36.0613365,-115.1812525 -36.06133383,-115.1812436 -36.06133132,-115.1812353 -36.06132865,-115.1812265 -36.06132598,-115.1812176 -36.06132346,-115.1812093 -36.06132079,-115.1812005 -36.06131812,-115.1811916 -36.0613156,-115.1811833 -36.06131329,-115.1811743 -36.06131151,-115.1811652 -36.06130983,-115.1811565 -36.06130805,-115.1811473 -36.06130627,-115.1811382 -36.06130459,-115.1811295 -36.06130281,-115.1811204 -36.06130103,-115.1811112 -36.06129935,-115.1811025 -36.06129757,-115.1810934 -36.06129579,-115.1810842 -36.06129411,-115.1810756 -36.06129233,-115.1810664 -36.06129055,-115.1810572 -36.06128887,-115.1810486 -36.06128709,-115.1810394 -36.06128531,-115.1810302 -36.06128363,-115.1810216 -36.06128185,-115.1810124 -36.06128007,-115.1810032 -36.06127839,-115.1809946 -36.06127661,-115.1809854 -36.06127483,-115.1809763 -36.06127315,-115.1809676 -36.06127137,-115.1809584 -36.06126959,-115.1809493 -36.06126791,-115.1809406 -36.06126613,-115.1809315 -36.06126435,-115.1809223 -36.06126267,-115.1809136 -36.06126089,-115.1809045 -36.06125911,-115.1808953 -36.06125743,-115.1808867 -36.06125565,-115.1808775 -36.06125387,-115.1808683 -36.06125219,-115.1808597 -36.06125041,-115.1808505 -36.06124863,-115.1808413 -36.06124695,-115.1808327 -36.06124517,-115.1808235 -36.06124339,-115.1808143 -36.06124171,-115.1808057 -36.06123993,-115.1807965 -36.06123815,-115.1807873 -36.06123647,-115.1807787 -36.06123469,-115.1807695 -36.0612334,-115.1807602 -36.06123247,-115.1807514 -36.06123149,-115.1807421 -36.06123051,-115.1807327 -36.06122958,-115.1807239 -36.0612286,-115.1807146 -36.06122762,-115.1807052 -36.06122669,-115.1806964 -36.06122571,-115.1806871 -36.06122473,-115.1806777 -36.0612238,-115.1806689 -36.06122282,-115.1806595 -36.06122184,-115.1806502 -36.06122092,-115.1806414 -36.06121993,-115.180632 -36.06121895,-115.1806227 -36.06121803,-115.1806139 -36.06121704,-115.1806045 -36.06121606,-115.1805951 -36.06121514,-115.1805863 -36.06121415,-115.180577 -36.06121317,-115.1805676 -36.06121225,-115.1805588 -36.06121127,-115.1805495 -36.06121028,-115.1805401 -36.06120936,-115.1805313 -36.06120838,-115.1805219 -36.06120739,-115.1805126 -36.06120647,-115.1805038 -36.06120549,-115.1804944 -36.06120451,-115.1804851 -36.06120358,-115.1804763 -36.0612026,-115.1804669 -36.06120162,-115.1804575 -36.06120069,-115.1804487 -36.06119971,-115.1804394 -36.06119873,-115.18043 -36.0611978,-115.1804212 -36.06119682,-115.1804119 -36.06119584,-115.1804025 -36.06119491,-115.1803937 -36.06119401,-115.1803843 -36.06119419,-115.1803749 -36.06119436,-115.180366 -36.06119455,-115.1803566 -36.06119473,-115.1803472 -36.0611949,-115.1803383 -36.06119508,-115.1803289 -36.06119526,-115.1803194 -36.06119543,-115.1803106 -36.06119561,-115.1803011 -36.06119579,-115.1802917 -36.06119596,-115.1802828 -36.06119614,-115.1802734 -36.06119632,-115.1802639 -36.0611965,-115.1802551 -36.06119668,-115.1802456 -36.06119686,-115.1802362 -36.06119703,-115.1802273 -36.06119721,-115.1802179 -36.06119739,-115.1802085 -36.06119756,-115.1801996 -36.06119774,-115.1801902 -36.06119792,-115.1801807 -36.06119809,-115.1801718 -36.06119827,-115.1801624 -36.06119846,-115.180153 -36.06119863,-115.1801441 -36.06119881,-115.1801347 -36.06119899,-115.1801252 -36.06119916,-115.1801164 -36.06119934,-115.1801069 -36.06119952,-115.1800975 -36.06119969,-115.1800886 -36.06119987,-115.1800792 -36.06120005,-115.1800698 -36.06120022,-115.1800609 -36.06120041,-115.1800515 -36.06120059,-115.180042 -36.06120076,-115.1800331 -36.06120094,-115.1800237 -36.06120112,-115.1800143 -36.06120129,-115.1800054 -36.06120147,-115.179996 -36.06120165,-115.1799865 -36.06120182,-115.1799777 -36.061202,-115.1799682 -36.06120218,-115.1799588 -36.06120236,-115.1799499 -36.06120254,-115.1799405 -36.06120272,-115.1799311 -36.06120289,-115.1799222 -36.06120307,-115.1799128 -36.06120325,-115.1799033 -36.06120342,-115.1798944 -36.0612036,-115.179885 -36.06120378,-115.1798756 -36.06120395,-115.1798667 -36.06120413,-115.1798573 -36.06120432,-115.1798478 -36.06120449,-115.179839 -36.06120467,-115.1798295 -36.06120485,-115.1798201 -36.06120502,-115.1798112 -36.0612052,-115.1798018 -36.06120538,-115.1797924 -36.06120555,-115.1797835 -36.06120573,-115.179774 -36.06120591,-115.1797646 -36.06120608,-115.1797557 -36.06120627,-115.1797463 -36.06120645,-115.1797369 -36.06120662,-115.179728 -36.0612068,-115.1797186 -36.06120698,-115.1797091 -36.06120715,-115.1797003 -36.06120733,-115.1796908 -36.06120751,-115.1796814 -36.06120768,-115.1796725 -36.06120786,-115.1796631 -36.06120854,-115.1796538 -36.06121058,-115.1796452 -36.06121274,-115.1796362 -36.0612149,-115.1796271 -36.06121694,-115.1796186 -36.06121911,-115.1796096 -36.06122127,-115.1796005 -36.06122331,-115.179592 -36.06122547,-115.1795829 -36.06122764,-115.1795739 -36.06122967,-115.1795654 -36.06123184,-115.1795563 -36.061234,-115.1795473 -36.06123604,-115.1795388 -36.06123821,-115.1795297 -36.06124037,-115.1795207 -36.06124241,-115.1795121 -36.06124457,-115.1795031 -36.06124674,-115.179494 -36.06124877,-115.1794855 -36.06125094,-115.1794765 -36.0612531,-115.1794674 -36.06125514,-115.1794589 -36.06125731,-115.1794499 -36.06125947,-115.1794408 -36.06126151,-115.1794323 -36.06126367,-115.1794232 -36.06126584,-115.1794142 -36.06126787,-115.1794057 -36.06127004,-115.1793966 -36.0612722,-115.1793876 -36.06127424,-115.179379 -36.0612764,-115.17937 -36.06127857,-115.1793609 -36.06128061,-115.1793524 -36.06128277,-115.1793434 -36.06128494,-115.1793343 -36.06128697,-115.1793258 -36.06128914,-115.1793168 -36.0612913,-115.1793077 -36.06129334,-115.1792992 -36.0612955,-115.1792901 -36.06129767,-115.1792811 -36.06129971,-115.1792726 -36.06130187,-115.1792635 -36.06130404,-115.1792545 -36.06130607,-115.179246 -36.06130824,-115.1792369 -36.0613104,-115.1792279 -36.06131244,-115.1792193 -36.0613146,-115.1792103 -36.06131677,-115.1792012 -36.06131881,-115.1791927 -36.06132097,-115.1791837 -36.06132313,-115.1791746 -36.06132517,-115.1791661 -36.06132734,-115.179157 -36.0613295,-115.179148 -36.06133154,-115.1791395 -36.0613337,-115.1791304 -36.06133587,-115.1791214 -36.06133791,-115.1791129 -36.06134007,-115.1791038 -36.06134223,-115.1790948 -36.06134427,-115.1790862 -36.06134644,-115.1790772 -36.0613486,-115.1790681 -36.06135064,-115.1790596 -36.0613528,-115.1790506 -36.06135497,-115.1790415 -36.061357,-115.179033 -36.06135917,-115.179024 -36.06136133,-115.1790149 -36.06136337,-115.1790064 -36.06136554,-115.1789973 -36.0613677,-115.1789883 -36.06136974,-115.1789798 -36.0613719,-115.1789707 -36.06137407,-115.1789617 -36.0613761,-115.1789531 -36.06137827,-115.1789441 -36.06138043,-115.178935 -36.06138247,-115.1789265 -36.06138464,-115.1789175 -36.0613868,-115.1789084 -36.06138884,-115.1788999 -36.061391,-115.1788909 -36.06139317,-115.1788818 -36.0613952,-115.1788733 -36.06139737,-115.1788642 -36.06139953,-115.1788552 -36.06140157,-115.1788467 -36.06140373,-115.1788376 -36.0614059,-115.1788286 -36.06140794,-115.1788201 -36.0614101,-115.178811 -36.06141227,-115.178802 -36.0614143,-115.1787934 -36.06141647,-115.1787844 -36.06141863,-115.1787753 -36.06142067,-115.1787668 -36.06142283,-115.1787578 -36.061425,-115.1787487 -36.06142704,-115.1787402 -36.0614292,-115.1787311 -36.06143137,-115.1787221 -36.0614334,-115.1787136 -36.06143557,-115.1787045 -36.06143773,-115.1786955 -36.06143977,-115.178687 -36.06144193,-115.1786779 -36.0614441,-115.1786689 -36.06144614,-115.1786603 -36.0614483,-115.1786513 -36.06145046,-115.1786422 -36.06145366,-115.1786343 -36.06145749,-115.1786262 -36.06146133,-115.178618 -36.06146493,-115.1786103 -36.06146877,-115.1786021 -36.0614726,-115.178594 -36.06147621,-115.1785863 -36.06148004,-115.1785781 -36.06148387,-115.1785699 -36.06148748,-115.1785622 -36.06149132,-115.1785541 -36.06149515,-115.1785459 -36.06149876,-115.1785382 -36.06150259,-115.1785301 -36.06150642,-115.1785219 -36.06151003,-115.1785142 -36.06151386,-115.178506 -36.0615177,-115.1784979 -36.06152131,-115.1784902 -36.06152514,-115.178482 -36.06152897,-115.1784738 -36.06153258,-115.1784661 -36.06153641,-115.178458 -36.06154025,-115.1784498 -36.06154385,-115.1784421 -36.06154769,-115.1784339 -36.06155152,-115.1784258 -36.06155513,-115.1784181 -36.06155896,-115.1784099 -36.06156279,-115.1784017 -36.0615664,-115.1783941 -36.06157024,-115.1783859 -36.06157407,-115.1783777 -36.06157768,-115.17837 -36.06158151,-115.1783619 -36.06158534,-115.1783537 -36.06158895,-115.178346 -36.06159278,-115.1783378 -36.06159662,-115.1783297 -36.06160022,-115.178322 -36.06160406,-115.1783138 -36.06160789,-115.1783056 -36.0616115,-115.1782979 -36.06161533,-115.1782898 -36.06161917,-115.1782816 -36.06162277,-115.1782739 -36.06162661,-115.1782658 -36.06163044,-115.1782576 -36.06163405,-115.1782499 -36.06163788,-115.1782417 -36.06164171,-115.1782336 -36.06164532,-115.1782259 -36.06164916,-115.1782177 -36.06165299,-115.1782095 -36.0616566,-115.1782018 -36.06166043,-115.1781937 -36.06166426,-115.1781855 -36.06166787,-115.1781778 -36.0616717,-115.1781696 -36.06167554,-115.1781615 -36.06167914,-115.1781538 -36.06168298,-115.1781456 -36.06168681,-115.1781374 -36.06169042,-115.1781298 -36.06169425,-115.1781216 -36.06169809,-115.1781134 -36.06170169,-115.1781057 -36.06170553,-115.1780976 -36.06170936,-115.1780894 -36.06171297,-115.1780817 -36.0617168,-115.1780735 -36.06172063,-115.1780654 -36.06172424,-115.1780577 -36.06172807,-115.1780495 -36.06173191,-115.1780413 -36.06173552,-115.1780336 -36.06173935,-115.1780255 -36.06174318,-115.1780173 -36.06174679,-115.1780096 -36.06175062,-115.1780014 -36.06175446,-115.1779933 -36.06175806,-115.1779856 -36.0617619,-115.1779774 -36.06176573,-115.1779693 -36.06176934,-115.1779616 -36.06177317,-115.1779534 -36.06177701,-115.1779452 -36.06178061,-115.1779375 -36.06178445,-115.1779294 -36.06178828,-115.1779212 -36.06179189,-115.1779135 -36.06179572,-115.1779053 -36.06179955,-115.1778972 -36.06180316,-115.1778895 -36.06180699,-115.1778813 -36.06181083,-115.1778731 -36.06181444,-115.1778655 -36.06181827,-115.1778573 -36.0618221,-115.1778491 -36.06182571,-115.1778414 -36.06182954,-115.1778333 -36.06183338,-115.1778251 -36.06183698,-115.1778174 -36.06184082,-115.1778092 -36.06184465,-115.1778011 -36.06184826,-115.1777934 -36.06185209,-115.1777852 -36.06185593,-115.177777 -36.06185953,-115.1777693 -36.06186337,-115.1777612 -36.0618672,-115.177753 -36.06187081,-115.1777453 -36.06187464,-115.1777371 -36.06187847,-115.177729 -36.06188208,-115.1777213 -36.06188591,-115.1777131 -36.06188975,-115.1777049 -36.06189336,-115.1776973 -36.06189719,-115.1776891 -36.06190102,-115.1776809 -36.06190463,-115.1776732 -36.06190846,-115.1776651 -36.0619123,-115.1776569 -36.0619159,-115.1776492 -36.06191974,-115.177641 -36.06192357,-115.1776329 -36.06192718,-115.1776252 -36.06193101,-115.177617 -36.06193485,-115.1776088 -36.06193845,-115.1776012 -36.06194229,-115.177593 -36.06194612,-115.1775848 -36.06194973,-115.1775771 -36.06195356,-115.177569 -36.06195739,-115.1775608 -36.061961,-115.1775531 -36.06196483,-115.1775449 -36.06196867,-115.1775368 -36.06197228,-115.1775291 -36.06197611,-115.1775209 -36.06197983,-115.1775126 -36.06198329,-115.1775049 -36.06198697,-115.1774966 -36.06199065,-115.1774883 -36.06199411,-115.1774805 -36.0619978,-115.1774722 -36.06200148,-115.177464 -36.06200494,-115.1774562 -36.06200862,-115.1774479 -36.0620123,-115.1774396 -36.06201577,-115.1774318 -36.06201945,-115.1774236 -36.06202313,-115.1774153 -36.06202659,-115.1774075 -36.06203027,-115.1773992 -36.06203395,-115.177391 -36.06203742,-115.1773832 -36.0620411,-115.1773749 -36.06204478,-115.1773666 -36.06204824,-115.1773588 -36.06205192,-115.1773506 -36.0620556,-115.1773423 -36.06205907,-115.1773345 -36.06206275,-115.1773262 -36.06206643,-115.1773179 -36.06206989,-115.1773102 -36.06207357,-115.1773019 -36.06207725,-115.1772936 -36.06208072,-115.1772858 -36.0620844,-115.1772775 -36.06208808,-115.1772693 -36.06209154,-115.1772615 -36.06209522,-115.1772532 -36.06209891,-115.1772449 -36.06210237,-115.1772371 -36.06210605,-115.1772289 -36.06210973,-115.1772206 -36.06211319,-115.1772128 -36.06211688,-115.1772045 -36.06212056,-115.1771962 -36.06212383,-115.1771883 -36.06212716,-115.1771798 -36.06213049,-115.1771713 -36.06213363,-115.1771633 -36.06213696,-115.1771548 -36.06214029,-115.1771464 -36.06214342,-115.1771384 -36.06214676,-115.1771299 -36.06215009,-115.1771214 -36.06215322,-115.1771134 -36.06215655,-115.1771049 -36.06215988,-115.1770964 -36.06216302,-115.1770884 -36.06216635,-115.1770799 -36.06216968,-115.1770714 -36.06217282,-115.1770634 -36.06217615,-115.1770549 -36.06217948,-115.1770464 -36.06218262,-115.1770384 -36.06218595,-115.1770299 -36.06218928,-115.1770214 -36.06219241,-115.1770134 -36.06219574,-115.1770049 -36.06219908,-115.1769964 -36.06220221,-115.1769884 -36.06220554,-115.1769799 -36.06220887,-115.1769714 -36.06221201,-115.1769634 -36.06221534,-115.1769549 -36.06221867,-115.1769464 -36.06222181,-115.1769384 -36.06222514,-115.1769299 -36.06222847,-115.1769214 -36.0622316,-115.1769134 -36.06223494,-115.1769049 -36.06223827,-115.1768965 -36.0622414,-115.1768885 -36.06224473,-115.17688 -36.06224807,-115.1768715 -36.0622512,-115.1768635 -36.06225453,-115.176855 -36.06225786,-115.1768465 -36.062261,-115.1768385 -36.06226433,-115.17683 -36.06226766,-115.1768215 -36.0622708,-115.1768135 -36.06227413,-115.176805 -36.06227746,-115.1767965 -36.06228059,-115.1767885 -36.06228393,-115.17678 -36.06228726,-115.1767715 -36.06229039,-115.1767635 -36.06229372,-115.176755 -36.06229705,-115.1767465 -36.06230014,-115.1767385 -36.06230257,-115.1767295 -36.062305,-115.1767206 -36.06230729,-115.1767122 -36.06230972,-115.1767032 -36.06231215,-115.1766943 -36.06231443,-115.1766859 -36.06231686,-115.1766769 -36.06231929,-115.176668 -36.06232158,-115.1766595 -36.06232401,-115.1766506 -36.06232644,-115.1766416 -36.06232873,-115.1766332 -36.06233116,-115.1766243 -36.06233359,-115.1766153 -36.06233587,-115.1766069 -36.0623383,-115.176598 -36.06234073,-115.176589 -36.06234302,-115.1765806 -36.06234545,-115.1765716 -36.06234788,-115.1765627 -36.06235017,-115.1765543 -36.0623526,-115.1765453 -36.06235503,-115.1765364 -36.06235731,-115.176528 -36.06235974,-115.176519 -36.06236217,-115.1765101 -36.06236446,-115.1765016 -36.06236689,-115.1764927 -36.06236932,-115.1764837 -36.06237161,-115.1764753 -36.06237404,-115.1764664 -36.06237647,-115.1764574 -36.06237875,-115.176449 -36.06238118,-115.1764401 -36.06238361,-115.1764311 -36.06238561,-115.1764226 -36.06238726,-115.1764134 -36.0623889,-115.1764042 -36.06239045,-115.1763955 -36.0623921,-115.1763863 -36.06239375,-115.1763771 -36.0623953,-115.1763684 -36.06239694,-115.1763592 -36.06239859,-115.17635 -36.06240014,-115.1763413 -36.06240178,-115.1763321 -36.06240343,-115.1763228 -36.06240498,-115.1763142 -36.06240663,-115.176305 -36.06240827,-115.1762957 -36.06240982,-115.1762871 -36.06241147,-115.1762779 -36.06241312,-115.1762686 -36.06241467,-115.17626 -36.06241631,-115.1762508 -36.06241796,-115.1762415 -36.06241951,-115.1762329 -36.06242115,-115.1762237 -36.0624228,-115.1762144 -36.06242435,-115.1762058 -36.062426,-115.1761966 -36.06242764,-115.1761873 -36.06242919,-115.1761787 -36.06243084,-115.1761695 -36.06243249,-115.1761602 -36.06243404,-115.1761516 -36.06243568,-115.1761424 -36.06243733,-115.1761331 -36.06243888,-115.1761245 -36.06244053,-115.1761153 -36.06244217,-115.176106 -36.06244372,-115.1760974 -36.06244537,-115.1760882 -36.06244701,-115.1760789 -36.06244856,-115.1760703 -36.06245021,-115.1760611 -36.06245186,-115.1760518 -36.06245341,-115.1760432 -36.06245505,-115.1760339 -36.0624567,-115.1760247 -36.06245825,-115.1760161 -36.0624599,-115.1760068 -36.06246154,-115.1759976 -36.06246309,-115.175989 -36.06246474,-115.1759797 -36.06246638,-115.1759705 -36.06246793,-115.1759619 -36.06246958,-115.1759526 -36.06247123,-115.1759434 -36.06247278,-115.1759348 -36.06247442,-115.1759255 -36.06247607,-115.1759163 -36.06247762,-115.1759077 -36.06247927,-115.1758984 -36.06248091,-115.1758892 -36.06248246,-115.1758806 -36.06248411,-115.1758713 -36.06248575,-115.1758621 -36.0624873,-115.1758535 -36.06248895,-115.1758442 -36.0624906,-115.175835 -36.06249215,-115.1758264 -36.06249379,-115.1758171 -36.06249544,-115.1758079 -36.06249699,-115.1757993 -36.06249864,-115.17579 -36.06249962,-115.1757807 -36.06250036,-115.1757719 -36.06250115,-115.1757625 -36.06250194,-115.1757531 -36.06250269,-115.1757443 -36.06250348,-115.1757349 -36.06250427,-115.1757255 -36.06250501,-115.1757167 -36.0625058,-115.1757073 -36.06250659,-115.1756979 -36.06250734,-115.1756891 -36.06250813,-115.1756797 -36.06250892,-115.1756703 -36.06250966,-115.1756615 -36.06251045,-115.1756521 -36.06251125,-115.1756427 -36.06251199,-115.1756339 -36.06251278,-115.1756245 -36.06251357,-115.1756151 -36.06251432,-115.1756063 -36.06251511,-115.1755969 -36.0625159,-115.1755875 -36.06251664,-115.1755787 -36.06251743,-115.1755693 -36.06251822,-115.1755599 -36.06251897,-115.1755511 -36.06251976,-115.1755417 -36.06252055,-115.1755323 -36.06252129,-115.1755235 -36.06252208,-115.1755141 -36.06252288,-115.1755047 -36.06252362,-115.1754958 -36.06252441,-115.1754865 -36.0625252,-115.1754771 -36.06252595,-115.1754682 -36.06252674,-115.1754589 -36.06252753,-115.1754495 -36.06252827,-115.1754406 -36.06252906,-115.1754313 -36.06252985,-115.1754219 -36.0625306,-115.175413 -36.06253139,-115.1754037 -36.06253218,-115.1753943 -36.06253292,-115.1753854 -36.06253371,-115.1753761 -36.0625345,-115.1753667 -36.06253525,-115.1753578 -36.06253604,-115.1753485 -36.06253683,-115.1753391 -36.06253758,-115.1753302 -36.06253837,-115.1753209 -36.06253916,-115.1753115 -36.0625399,-115.1753026 -36.06254069,-115.1752933 -36.06254148,-115.1752839 -36.06254223,-115.175275 -36.06254302,-115.1752657 -36.06254381,-115.1752563 -36.06254398,-115.1752474 -36.06254395,-115.175238 -36.06254392,-115.1752285 -36.06254389,-115.1752197 -36.06254385,-115.1752102 -36.06254382,-115.1752008 -36.06254379,-115.1751919 -36.06254376,-115.1751825 -36.06254373,-115.175173 -36.0625437,-115.1751642 -36.06254367,-115.1751547 -36.06254364,-115.1751453 -36.06254361,-115.1751364 -36.06254358,-115.175127 -36.06254355,-115.1751175 -36.06254352,-115.1751087 -36.06254348,-115.1750992 -36.06254345,-115.1750898 -36.06254342,-115.1750809 -36.06254339,-115.1750715 -36.06254336,-115.175062 -36.06254333,-115.1750532 -36.0625433,-115.1750437 -36.06254327,-115.1750343 -36.06254324,-115.1750254 -36.06254321,-115.175016 -36.06254318,-115.1750065 -36.06254315,-115.1749977 -36.06254311,-115.1749882 -36.06254308,-115.1749788 -36.06254305,-115.1749699 -36.06254302,-115.1749605 -36.06254299,-115.1749511 -36.06254296,-115.1749422 -36.06254293,-115.1749327 -36.0625429,-115.1749233 -36.06254287,-115.1749144 -36.06254284,-115.174905 -36.06254281,-115.1748956 -36.06254278,-115.1748867 -36.06254274,-115.1748772 -36.06254271,-115.1748678 -36.06254268,-115.1748589 -36.06254265,-115.1748495 -36.06254262,-115.1748401 -36.06254259,-115.1748312 -36.06254256,-115.1748217 -36.06254253,-115.1748123 -36.0625425,-115.1748034 -36.06254247,-115.174794 -36.06254244,-115.1747846 -36.06254241,-115.1747757 -36.06254237,-115.1747662 -36.06254234,-115.1747568 -36.06254231,-115.1747479 -36.06254228,-115.1747385 -36.06254225,-115.1747291 -36.06254222,-115.1747202 -36.06254219,-115.1747108 -36.06254216,-115.1747013 -36.06254213,-115.1746924 -36.0625421,-115.174683 -36.06254207,-115.1746736 -36.06254204,-115.1746647 -36.062542,-115.1746553 -36.06254199,-115.1746458 -36.06254197,-115.1746369 -36.06254195,-115.1746275 -36.06254194,-115.1746181 -36.06254192,-115.1746092 -36.06254191,-115.1745998 -36.06254189,-115.1745903 -36.06254188,-115.1745814 -36.06254186,-115.174572 -36.06254184,-115.1745626 -36.06254183,-115.1745537 -36.06254181,-115.1745443 -36.0625418,-115.1745348 -36.06254178,-115.1745259 -36.06254177,-115.1745165 -36.06254175,-115.1745071 -36.06254173,-115.1744982 -36.06254172,-115.1744888 -36.0625417,-115.1744793 -36.06254169,-115.1744704 -36.06254167,-115.174461 -36.06254166,-115.1744516 -36.06254164,-115.1744427 -36.06254162,-115.1744333 -36.06254161,-115.1744238 -36.06254159,-115.174415 -36.06254158,-115.1744055 -36.06254156,-115.1743961 -36.06254155,-115.1743872 -36.06254153,-115.1743778 -36.06254151,-115.1743683 -36.0625415,-115.1743595 -36.06254148,-115.17435 -36.06254147,-115.1743406 -36.06254145,-115.1743317 -36.06254143,-115.1743223 -36.06254142,-115.1743128 -36.0625414,-115.174304 -36.06254139,-115.1742945 -36.06254137,-115.1742851 -36.06254136,-115.1742762 -36.06254134,-115.1742668 -36.06254132,-115.1742573 -36.06254131,-115.1742485 -36.06254129,-115.174239 -36.06254128,-115.1742296 -36.06254126,-115.1742207 -36.06254125,-115.1742113 -36.06254123,-115.1742018 -36.06254121,-115.174193 -36.0625412,-115.1741835 -36.06254118,-115.1741741 -36.06254117,-115.1741652 -36.06254115,-115.1741558 -36.06254114,-115.1741463 -36.06254112,-115.1741375 -36.0625411,-115.174128 -36.06254109,-115.1741186 -36.06254107,-115.1741097 -36.06254106,-115.1741003 -36.06254104,-115.1740908 -36.06254103,-115.174082 -36.06254101,-115.1740725 -36.06254099,-115.1740631 -36.06254098,-115.1740542 -36.06254096,-115.1740448 -36.06254095,-115.1740354 -36.06254093,-115.1740265 -36.06254091,-115.174017 -36.0625409,-115.1740076 -36.06254088,-115.1739987 -36.06254087,-115.1739893 -36.06254085,-115.1739799 -36.06254084,-115.173971 -36.06254082,-115.1739615 -36.0625408,-115.1739521 -36.06254079,-115.1739432 -36.06254077,-115.1739338 -36.06254076,-115.1739244 -36.06254074,-115.1739155 -36.06254073,-115.173906 -36.06254071,-115.1738966 -36.06254069,-115.1738877 -36.06254068,-115.1738783 -36.06254066,-115.1738689 -36.06254065,-115.17386 -36.06254063,-115.1738505 -36.06254062,-115.1738411 -36.0625406,-115.1738322 -36.06254058,-115.1738228 -36.06254057,-115.1738134 -36.06254055,-115.1738045 -36.06254054,-115.173795 -36.06254052,-115.1737856 -36.06254051,-115.1737767 -36.06254049,-115.1737673 -36.06254047,-115.1737579 -36.06254046,-115.173749 -36.06254044,-115.1737396 -36.06254043,-115.1737301 -36.06254041,-115.1737212 -36.06254039,-115.1737118 -36.06254038,-115.1737024 -36.06254036,-115.1736935 -36.06254035,-115.1736841 -36.06254033,-115.1736746 -36.06254032,-115.1736657 -36.0625403,-115.1736563 -36.06254028,-115.1736469 -36.06254027,-115.173638 -36.06254025,-115.1736286 -36.06254024,-115.1736191 -36.06254022,-115.1736102 -36.06254021,-115.1736008 -36.06254019,-115.1735914 -36.06254017,-115.1735825 -36.06254016,-115.1735731 -36.06254014,-115.1735636 -36.06254013,-115.1735547 -36.06254011,-115.1735453 -36.0625401,-115.1735359 -36.06254008,-115.173527 -36.06254006,-115.1735176 -36.06254005,-115.1735081 -36.06254003,-115.1734992 -36.06254002,-115.1734898 -36.06254,-115.1734804 -36.06253999,-115.1734715 -36.06253997,-115.1734621 -36.06253995,-115.1734526 -36.06253994,-115.1734438 -36.06253992,-115.1734343 -36.06253991,-115.1734249 -36.06253989,-115.173416 -36.06253987,-115.1734066 -36.06253986,-115.1733971 -36.06253984,-115.1733883 -36.06253983,-115.1733788 -36.06253981,-115.1733694 -36.0625398,-115.1733605 -36.06253978,-115.1733511 -36.06253976,-115.1733416 -36.06253975,-115.1733328 -36.06253973,-115.1733233 -36.06253972,-115.1733139 -36.0625397,-115.173305 -36.06253969,-115.1732956 -36.06253967,-115.1732861 -36.06253965,-115.1732773 -36.06253964,-115.1732678 -36.06253962,-115.1732584 -36.06253961,-115.1732495 -36.06253959,-115.1732401 -36.06253958,-115.1732306 -36.06253956,-115.1732218 -36.06253954,-115.1732123 -36.06253953,-115.1732029 -36.06253951,-115.173194 -36.0625395,-115.1731846 -36.06253948,-115.1731751 -36.06253947,-115.1731663 -36.06253945,-115.1731568 -36.06253943,-115.1731474 -36.06253942,-115.1731385 -36.0625394,-115.1731291 -36.06253939,-115.1731196 -36.06253937,-115.1731108 -36.06253935,-115.1731013 -36.06253934,-115.1730919 -36.06253932,-115.173083 -36.06253931,-115.1730736 -36.06253929,-115.1730642 -36.06253928,-115.1730553 -36.06253926,-115.1730458 -36.06253924,-115.1730364 -36.06253923,-115.1730275 -36.06253921,-115.1730181 -36.0625392,-115.1730087 -36.06253918,-115.1729998 -36.06253917,-115.1729903 -36.06253915,-115.1729809 -36.06253913,-115.172972 -36.06253912,-115.1729626 -36.0625391,-115.1729532 -36.06253909,-115.1729443 -36.06253907,-115.1729348 -36.06253906,-115.1729254 -36.06253904,-115.1729165 -36.06253902,-115.1729071 -36.06253901,-115.1728977 -36.06253899,-115.1728888 -36.06253897,-115.1728793 -36.06253895,-115.1728699 -36.06253893,-115.172861 -36.0625389,-115.1728516 -36.06253888,-115.1728422 -36.06253886,-115.1728333 -36.06253884,-115.1728238 -36.06253882,-115.1728144 -36.0625388,-115.1728055 -36.06253877,-115.1727961 -36.06253875,-115.1727867 -36.06253873,-115.1727778 -36.06253871,-115.1727684 -36.06253869,-115.1727589 -36.06253867,-115.17275 -36.06253864,-115.1727406 -36.06253862,-115.1727312 -36.0625386,-115.1727223 -36.06253858,-115.1727129 -36.06253856,-115.1727034 -36.06253854,-115.1726945 -36.06253851,-115.1726851 -36.06253849,-115.1726757 -36.06253847,-115.1726668 -36.06253845,-115.1726574 -36.06253843,-115.1726479 -36.06253841,-115.172639 -36.06253838,-115.1726296 -36.06253836,-115.1726202 -36.06253834,-115.1726113 -36.06253832,-115.1726019 -36.0625383,-115.1725924 -36.06253828,-115.1725835 -36.06253825,-115.1725741 -36.06253823,-115.1725647 -36.06253821,-115.1725558 -36.06253819,-115.1725464 -36.06253817,-115.1725369 -36.06253815,-115.1725281 -36.06253813,-115.1725186 -36.0625381,-115.1725092 -36.06253808,-115.1725003 -36.06253806,-115.1724909 -36.06253804,-115.1724814 -36.06253802,-115.1724726 -36.06253799,-115.1724631 -36.06253795,-115.1724537 -36.06253791,-115.1724448 -36.06253787,-115.1724354 -36.06253783,-115.1724259 -36.06253779,-115.1724171 -36.06253775,-115.1724076 -36.06253771,-115.1723982 -36.06253767,-115.1723893 -36.06253763,-115.1723799 -36.06253759,-115.1723704 -36.06253755,-115.1723616 -36.06253751,-115.1723521 -36.06253747,-115.1723427 -36.06253743,-115.1723338 -36.06253739,-115.1723244 -36.06253735,-115.1723149 -36.06253731,-115.1723061 -36.06253727,-115.1722966 -36.06253723,-115.1722872 -36.06253719,-115.1722783 -36.06253715,-115.1722689 -36.06253711,-115.1722594 -36.06253707,-115.1722506 -36.06253703,-115.1722411 -36.06253887,-115.172234 -36.06254608,-115.1722338 -36.06255374,-115.1722336 -36.0625614,-115.1722334 -36.06256861,-115.1722332 -36.06257627,-115.172233 -36.06258393,-115.1722328 -36.06259114,-115.1722327 -36.0625988,-115.1722325 -36.06260646,-115.1722323 -36.06261367,-115.1722321 -36.06262133,-115.1722319 -36.06262899,-115.1722317 -36.0626362,-115.1722315 -36.06264387,-115.1722314 -36.06265153,-115.1722312 -36.06265874,-115.172231 -36.0626664,-115.1722311 -36.06267406,-115.1722312 -36.06268127,-115.1722313 -36.06268893,-115.1722315 -36.06269659,-115.1722316 -36.06270381,-115.1722317 -36.06271147,-115.1722318 -36.06271913,-115.1722319 -36.06272634,-115.172232 -36.062734,-115.1722321 -36.06274166,-115.1722323 -36.06274888,-115.1722324 -36.06275654,-115.1722325 -36.0627642,-115.1722326 -36.06277141,-115.1722327 -36.06277907,-115.1722328 -36.06278673,-115.1722329 -36.06279395,-115.172233 -36.06280161,-115.1722331 -36.06280927,-115.1722333 -36.06281648,-115.1722334 -36.06282414,-115.1722335 -36.0628318,-115.1722336 -36.06283902,-115.1722337 -36.06284668,-115.1722338 -36.06285434,-115.1722339 -36.06286155,-115.172234 -36.06286921,-115.1722342 -36.06287687,-115.1722343 -36.06288408,-115.1722344 -36.06289175,-115.1722345 -36.06289941,-115.1722346 -36.06290662,-115.1722347 -36.06291428,-115.1722348 -36.06292194,-115.1722349 -36.06292915,-115.1722351 -36.06293682,-115.1722352 -36.06294448,-115.1722353 -36.06295169,-115.1722354 -36.06295935,-115.1722355 -36.06296701,-115.1722356 -36.06297422,-115.1722357 -36.06298189,-115.1722358 -36.06298955,-115.172236 -36.06299676,-115.1722361 -36.06300442,-115.1722362 -36.06301208,-115.1722363 -36.06301929,-115.1722364 -36.06302696,-115.1722365 -36.06303462,-115.1722366 -36.06304183,-115.1722367 -36.06304949,-115.1722369 -36.06305715,-115.172237 -36.06306436,-115.172237 -36.06307203,-115.1722371 -36.06307969,-115.1722372 -36.0630869,-115.1722372 -36.06309456,-115.1722373 -36.06310222,-115.1722373 -36.06310944,-115.1722374 -36.0631171,-115.1722374 -36.06312476,-115.1722375 -36.06313197,-115.1722376 -36.06313963,-115.1722376 -36.0631473,-115.1722377 -36.06315451,-115.1722377 -36.06316217,-115.1722378 -36.06316983,-115.1722379 -36.06317704,-115.1722379 -36.06318471,-115.172238 -36.06319237,-115.172238 -36.06319958,-115.1722381 -36.06320724,-115.1722381 -36.0632149,-115.1722382 -36.06322212,-115.1722383 -36.06322978,-115.1722383 -36.06323744,-115.1722384 -36.06324465,-115.1722384 -36.06325231,-115.1722385 -36.06325998,-115.1722386 -36.06326719,-115.1722386 -36.06327485,-115.1722387 -36.06328251,-115.1722387 -36.06328972,-115.1722388 -36.06329739,-115.1722388 -36.06330505,-115.1722389 -36.06331226,-115.172239 -36.06331992,-115.172239 -36.06332758,-115.1722391 -36.0633348,-115.1722391 -36.06334246,-115.1722392 -36.06335012,-115.1722392 -36.06335733,-115.1722393 -36.06336499,-115.1722394 -36.06337266,-115.1722394 -36.06337987,-115.1722395 -36.06338753,-115.1722395 -36.06339519,-115.1722396 -36.0634024,-115.1722397 -36.06341007,-115.1722397 -36.06341773,-115.1722398 -36.06342494,-115.1722398 -36.0634326,-115.1722399 -36.06344026,-115.1722399 -36.06344748,-115.17224 -36.06345514,-115.1722401 -36.0634628,-115.1722401 -36.06347001,-115.1722402 -36.06347767,-115.1722402 -36.06348534,-115.1722403 -36.06349255,-115.1722403 -36.06350021,-115.1722404 -36.06350787,-115.1722405 -36.06351508,-115.1722405 -36.06352275,-115.1722406 -36.06353041,-115.1722406 -36.06353762,-115.1722407 -36.06354528,-115.1722408 -36.06355294,-115.1722408 -36.06356016,-115.1722409 -36.06356782,-115.1722409 -36.06357548,-115.172241 -36.06358269,-115.172241 -36.06359035,-115.1722411 -36.06359802,-115.1722412 -36.06360523,-115.1722412 -36.06361289,-115.1722413 -36.06362055,-115.1722413 -36.06362776,-115.1722414 -36.06363543,-115.1722414 -36.06364309,-115.1722415 -36.0636503,-115.1722416 -36.06365796,-115.1722416 -36.06366563,-115.1722417 -36.06367284,-115.1722417 -36.0636805,-115.1722418 -36.06368816,-115.1722419 -36.06369537,-115.1722419 -36.06370304,-115.172242 -36.0637107,-115.172242 -36.06371791,-115.1722421 -36.06372557,-115.1722421 -36.06373323,-115.1722422 -36.06374044,-115.1722423 -36.06374811,-115.1722423 -36.06375577,-115.1722424 -36.06376298,-115.1722424 -36.06377064,-115.1722425 -36.06377831,-115.1722426 -36.06378552,-115.1722426 -36.06379318,-115.1722427 -36.06380084,-115.1722427 -36.06380805,-115.1722428 -36.06381572,-115.1722428 -36.06382338,-115.1722429 -36.06383059,-115.172243 -36.06383825,-115.172243 -36.06384591,-115.1722431 -36.06385313,-115.1722431 -36.06386079,-115.1722432 -36.06386845,-115.1722432 -36.06387566,-115.1722433 -36.06388332,-115.1722434 -36.06389099,-115.1722434 -36.0638982,-115.1722435 -36.06390586,-115.1722435 -36.06391352,-115.1722436 -36.06392073,-115.1722437 -36.0639284,-115.1722437 -36.06393606,-115.1722438 -36.06394327,-115.1722438 -36.06395093,-115.1722439 -36.06395859,-115.1722439 -36.06396581,-115.172244 -36.06397347,-115.1722439 -36.06398113,-115.1722437 -36.06398834,-115.1722436 -36.063996,-115.1722434 -36.06400366,-115.1722433 -36.06401087,-115.1722432 -36.06401853,-115.172243 -36.0640262,-115.1722429 -36.06403341,-115.1722428 -36.06404107,-115.1722426 -36.06404873,-115.1722425 -36.06405594,-115.1722423 -36.0640636,-115.1722422 -36.06407126,-115.1722421 -36.06407848,-115.1722419 -36.06408614,-115.1722418 -36.0640938,-115.1722417 -36.06410101,-115.1722415 -36.06410867,-115.1722414 -36.06411633,-115.1722412 -36.06412354,-115.1722411 -36.0641312,-115.172241 -36.06413887,-115.1722408 -36.06414608,-115.1722407 -36.06415374,-115.1722406 -36.0641614,-115.1722404 -36.06416861,-115.1722403 -36.06417627,-115.1722401 -36.06418393,-115.17224 -36.06419115,-115.1722399 -36.06419881,-115.1722397 -36.06420647,-115.1722396 -36.06421368,-115.1722395 -36.06422134,-115.1722393 -36.064229,-115.1722392 -36.06423621,-115.172239 -36.06424387,-115.1722389 -36.06425154,-115.1722388 -36.06425875,-115.1722386 -36.06426641,-115.1722385 -36.06427407,-115.1722383 -36.06428128,-115.1722382 -36.06428894,-115.1722381 -36.0642966,-115.1722379 -36.06430382,-115.1722378 -36.06431148,-115.1722377 -36.06431914,-115.1722375 -36.06432635,-115.1722374 -36.06433401,-115.1722372 -36.06434167,-115.1722371 -36.06434888,-115.172237 -36.06435654,-115.1722368 -36.06436421,-115.1722367 -36.06437142,-115.1722366 -36.06437908,-115.1722364 -36.06438674,-115.1722363 -36.06439395,-115.1722361 -36.06440161,-115.172236 -36.06440927,-115.1722359 -36.06441648,-115.1722357 -36.06442415,-115.1722356 -36.06443181,-115.1722354 -36.06443902,-115.1722353 -36.06444668,-115.1722352 -36.06445434,-115.172235 -36.06445595,-115.1722418 -36.06445587,-115.1722513 -36.0644558,-115.1722607 -36.06445572,-115.1722696 -36.06445565,-115.172279 -36.06445557,-115.1722885 -36.0644555,-115.1722973 -36.06445543,-115.1723068 -36.06445535,-115.1723162 -36.06445528,-115.1723251 -36.06445521,-115.1723345 -36.06445513,-115.172344 -36.06445506,-115.1723528 -36.06445499,-115.1723623 -36.06445491,-115.1723717 -36.06445484,-115.1723806 -36.06445476,-115.17239 -36.06445469,-115.1723994 -36.06445462,-115.1724083 -36.06445454,-115.1724178 -36.06445447,-115.1724272 -36.0644544,-115.1724361 -36.06445432,-115.1724455 -36.06445425,-115.1724549 -36.06445418,-115.1724638 -36.0644541,-115.1724733 -36.06445403,-115.1724827 -36.06445394,-115.1724916 -36.06445385,-115.172501 -36.06445375,-115.1725104 -36.06445366,-115.1725193 -36.06445356,-115.1725288 -36.06445346,-115.1725382 -36.06445337,-115.1725471 -36.06445327,-115.1725565 -36.06445318,-115.1725659 -36.06445308,-115.1725748 -36.06445299,-115.1725842 -36.06445289,-115.1725937 -36.0644528,-115.1726026 -36.0644527,-115.172612 -36.0644526,-115.1726214 -36.06445251,-115.1726303 -36.06445242,-115.1726397 -36.06445232,-115.1726492 -36.06445223,-115.1726581 -36.06445213,-115.1726675 -36.06445203,-115.1726769 -36.06445194,-115.1726858 -36.06445184,-115.1726952 -36.06445175,-115.1727047 -36.06445165,-115.1727135 -36.06445156,-115.172723 -36.06445146,-115.1727324 -36.06445137,-115.1727413 -36.06445127,-115.1727507 -36.06445117,-115.1727602 -36.06445108,-115.172769 -36.06445098,-115.1727785 -36.06445089,-115.1727879 -36.0644508,-115.1727968 -36.0644507,-115.1728062 -36.0644506,-115.1728157 -36.06445051,-115.1728245 -36.06445041,-115.172834 -36.06445032,-115.1728434 -36.06445022,-115.1728523 -36.06445013,-115.1728617 -36.06445003,-115.1728711 -36.06444997,-115.17288 -36.06444991,-115.1728895 -36.06444986,-115.1728989 -36.06444981,-115.1729078 -36.06444976,-115.1729172 -36.06444971,-115.1729266 -36.06444966,-115.1729355 -36.0644496,-115.172945 -36.06444955,-115.1729544 -36.0644495,-115.1729633 -36.06444945,-115.1729727 -36.0644494,-115.1729821 -36.06444935,-115.172991 -36.06444929,-115.1730005 -36.06444924,-115.1730099 -36.06444919,-115.1730188 -36.06444914,-115.1730282 -36.06444909,-115.1730376 -36.06444904,-115.1730465 -36.06444884,-115.1730559 -36.06444833,-115.1730654 -36.06444784,-115.1730742 -36.06444733,-115.1730836 -36.06444682,-115.173093 -36.06444633,-115.1731019 -36.06444582,-115.1731113 -36.0644453,-115.1731207 -36.06444482,-115.1731296 -36.06444431,-115.173139 -36.06444379,-115.1731484 -36.06444331,-115.1731573 -36.0644428,-115.1731667 -36.06444228,-115.1731761 -36.0644418,-115.173185 -36.06444129,-115.1731944 -36.06444077,-115.1732038 -36.06444029,-115.1732127 -36.06443978,-115.1732221 -36.06443926,-115.1732315 -36.06443878,-115.1732403 -36.06443827,-115.1732498 -36.06443775,-115.1732592 -36.06443727,-115.173268 -36.06443676,-115.1732774 -36.06443624,-115.1732869 -36.06443576,-115.1732957 -36.06443525,-115.1733051 -36.06443473,-115.1733145 -36.06443425,-115.1733234 -36.06443374,-115.1733328 -36.06443322,-115.1733422 -36.06443274,-115.1733511 -36.06443222,-115.1733605 -36.06443171,-115.1733699 -36.06443123,-115.1733788 -36.06443071,-115.1733882 -36.0644302,-115.1733976 -36.06442972,-115.1734065 -36.0644292,-115.1734159 -36.06442869,-115.1734253 -36.06442821,-115.1734341 -36.06442769,-115.1734436 -36.06442718,-115.173453 -36.0644267,-115.1734618 -36.06442618,-115.1734712 -36.06442567,-115.1734807 -36.06442519,-115.1734895 -36.06442467,-115.1734989 -36.06442416,-115.1735083 -36.06442368,-115.1735172 -36.06442316,-115.1735266 -36.06442265,-115.173536 -36.06442217,-115.1735449 -36.06442165,-115.1735543 -36.06442114,-115.1735637 -36.06442066,-115.1735726 -36.06442014,-115.173582 -36.06441963,-115.1735914 -36.06441914,-115.1736003 -36.06441863,-115.1736097 -36.06441812,-115.1736191 -36.06441763,-115.173628 -36.06441712,-115.1736374 -36.06441661,-115.1736468 -36.06441612,-115.1736556 -36.06441561,-115.173665 -36.0644151,-115.1736745 -36.06441461,-115.1736833 -36.0644141,-115.1736927 -36.06441359,-115.1737021 -36.0644131,-115.173711 -36.06441259,-115.1737204 -36.06441208,-115.1737298 -36.06441159,-115.1737387 -36.06441108,-115.1737481 -36.06441057,-115.1737575 -36.06441008,-115.1737664 -36.06440957,-115.1737758 -36.06440906,-115.1737852 -36.06440857,-115.1737941 -36.06440806,-115.1738035 -36.06440754,-115.1738129 -36.06440706,-115.1738218 -36.06440655,-115.1738312 -36.06440603,-115.1738406 -36.06440555,-115.1738494 -36.06440504,-115.1738589 -36.06440452,-115.1738683 -36.06440404,-115.1738771 -36.06440353,-115.1738865 -36.06440301,-115.173896 -36.06440253,-115.1739048 -36.06440202,-115.1739142 -36.0644015,-115.1739236 -36.06440102,-115.1739325 -36.06440051,-115.1739419 -36.06439999,-115.1739513 -36.06439951,-115.1739602 -36.064399,-115.1739696 -36.06439848,-115.173979 -36.064398,-115.1739879 -36.06439749,-115.1739973 -36.06439697,-115.1740067 -36.06439649,-115.1740156 -36.06439598,-115.174025 -36.06439546,-115.1740344 -36.06439498,-115.1740432 -36.06439446,-115.1740527 -36.06439395,-115.1740621 -36.06439347,-115.1740709 -36.06439295,-115.1740803 -36.06439244,-115.1740898 -36.06439196,-115.1740986 -36.06439144,-115.174108 -36.06439093,-115.1741174 -36.06439045,-115.1741263 -36.06438993,-115.1741357 -36.06438942,-115.1741451 -36.06438894,-115.174154 -36.06438842,-115.1741634 -36.06438791,-115.1741728 -36.06438743,-115.1741817 -36.06438691,-115.1741911 -36.0643864,-115.1742005 -36.06438592,-115.1742094 -36.0643854,-115.1742188 -36.06438489,-115.1742282 -36.06438441,-115.1742371 -36.06438389,-115.1742465 -36.06438338,-115.1742559 -36.0643829,-115.1742647 -36.06438238,-115.1742742 -36.06438187,-115.1742836 -36.06438138,-115.1742924 -36.06438087,-115.1743018 -36.06438036,-115.1743113 -36.06437987,-115.1743201 -36.06437936,-115.1743295 -36.06437885,-115.1743389 -36.06437836,-115.1743478 -36.06437785,-115.1743572 -36.06437734,-115.1743666 -36.06437685,-115.1743755 -36.06437634,-115.1743849 -36.06437583,-115.1743943 -36.06437534,-115.1744032 -36.06437483,-115.1744126 -36.06437432,-115.174422 -36.06437383,-115.1744309 -36.06437332,-115.1744403 -36.06437281,-115.1744497 -36.06437232,-115.1744585 -36.06437181,-115.174468 -36.0643713,-115.1744774 -36.06437081,-115.1744862 -36.0643703,-115.1744956 -36.06436979,-115.1745051 -36.0643693,-115.1745139 -36.06436879,-115.1745233 -36.06436827,-115.1745327 -36.06436779,-115.1745416 -36.06436728,-115.174551 -36.06436676,-115.1745604 -36.06436628,-115.1745693 -36.06436577,-115.1745787 -36.06436525,-115.1745881 -36.06436477,-115.174597 -36.06436426,-115.1746064 -36.06436374,-115.1746158 -36.06436326,-115.1746247 -36.06436275,-115.1746341 -36.06436223,-115.1746435 -36.06436175,-115.1746523 -36.06436124,-115.1746618 -36.06436072,-115.1746712 -36.06436024,-115.17468 -36.06435973,-115.1746894 -36.06435921,-115.1746989 -36.06435873,-115.1747077 -36.06435822,-115.1747171 -36.0643577,-115.1747265 -36.06435722,-115.1747354 -36.06435671,-115.1747448 -36.06435619,-115.1747542 -36.06435571,-115.1747631 -36.06435519,-115.1747725 -36.06435468,-115.1747819 -36.0643542,-115.1747908 -36.06435368,-115.1748002 -36.06435317,-115.1748096 -36.06435269,-115.1748185 -36.06435217,-115.1748279 -36.06435166,-115.1748373 -36.06435118,-115.1748462 -36.06435066,-115.1748556 -36.06435015,-115.174865 -36.06434967,-115.1748738 -36.06434915,-115.1748833 -36.06434864,-115.1748927 -36.06434816,-115.1749015 -36.06434764,-115.1749109 -36.06434713,-115.1749204 -36.06434665,-115.1749292 -36.06434613,-115.1749386 -36.06434562,-115.174948 -36.06434514,-115.1749569 -36.06434462,-115.1749663 -36.06434411,-115.1749757 -36.06434363,-115.1749846 -36.06434311,-115.174994 -36.0643426,-115.1750034 -36.06434211,-115.1750123 -36.0643416,-115.1750217 -36.06434109,-115.1750311 -36.0643406,-115.17504 -36.06434009,-115.1750494 -36.06433958,-115.1750588 -36.06433909,-115.1750676 -36.06433858,-115.1750771 -36.06433807,-115.1750865 -36.06433758,-115.1750953 -36.06433707,-115.1751047 -36.06433656,-115.1751142 -36.06433607,-115.175123 -36.06433556,-115.1751324 -36.06433505,-115.1751418 -36.06433456,-115.1751507 -36.06433405,-115.1751601 -36.06433354,-115.1751695 -36.06433305,-115.1751784 -36.06433254,-115.1751878 -36.06433203,-115.1751972 -36.06433154,-115.1752061 -36.06433103,-115.1752155 -36.06433051,-115.1752249 -36.06433003,-115.1752338 -36.06432952,-115.1752432 -36.064329,-115.1752526 -36.06432852,-115.1752614 -36.06432801,-115.1752709 -36.06432721,-115.1752802 -36.06432645,-115.1752891 -36.06432564,-115.1752985 -36.06432484,-115.1753078 -36.06432408,-115.1753167 -36.06432327,-115.175326 -36.06432247,-115.1753354 -36.06432171,-115.1753443 -36.0643209,-115.1753536 -36.0643201,-115.175363 -36.06431934,-115.1753719 -36.06431853,-115.1753812 -36.06431773,-115.1753906 -36.06431697,-115.1753995 -36.06431616,-115.1754088 -36.06431536,-115.1754182 -36.0643146,-115.175427 -36.06431379,-115.1754364 -36.06431298,-115.1754458 -36.06431223,-115.1754546 -36.06431142,-115.175464 -36.06431061,-115.1754734 -36.06430986,-115.1754822 -36.06430905,-115.1754916 -36.06430824,-115.175501 -36.06430749,-115.1755098 -36.06430668,-115.1755192 -36.06430587,-115.1755286 -36.06430512,-115.1755374 -36.06430431,-115.1755468 -36.0643035,-115.1755562 -36.06430275,-115.175565 -36.06430194,-115.1755744 -36.06430113,-115.1755838 -36.06430038,-115.1755926 -36.06429957,-115.175602 -36.06429876,-115.1756114 -36.06429801,-115.1756202 -36.0642972,-115.1756296 -36.06429639,-115.175639 -36.06429564,-115.1756478 -36.06429483,-115.1756572 -36.06429402,-115.1756666 -36.06429326,-115.1756754 -36.06429246,-115.1756848 -36.06429165,-115.1756942 -36.06429089,-115.175703 -36.06429009,-115.1757124 -36.06428928,-115.1757218 -36.06428852,-115.1757306 -36.06428772,-115.17574 -36.06428691,-115.1757493 -36.06428615,-115.1757582 -36.06428535,-115.1757676 -36.06428454,-115.1757769 -36.06428378,-115.1757858 -36.06428298,-115.1757952 -36.06428217,-115.1758045 -36.06428141,-115.1758134 -36.06428061,-115.1758228 -36.0642798,-115.1758321 -36.06427904,-115.175841 -36.06427824,-115.1758503 -36.06427743,-115.1758597 -36.06427667,-115.1758686 -36.06427587,-115.1758779 -36.06427506,-115.1758873 -36.0642743,-115.1758962 -36.0642735,-115.1759055 -36.06427269,-115.1759149 -36.06427193,-115.1759237 -36.06427113,-115.1759331 -36.06427032,-115.1759425 -36.06426956,-115.1759513 -36.06426876,-115.1759607 -36.06426795,-115.1759701 -36.06426719,-115.1759789 -36.06426639,-115.1759883 -36.06426558,-115.1759977 -36.06426482,-115.1760065 -36.06426402,-115.1760159 -36.06426321,-115.1760253 -36.06426245,-115.1760341 -36.06426165,-115.1760435 -36.06426084,-115.1760529 -36.06426008,-115.1760617 -36.06425928,-115.1760711 -36.06425847,-115.1760805 -36.06425771,-115.1760893 -36.06425691,-115.1760987 -36.0642561,-115.1761081 -36.06425534,-115.1761169 -36.06425454,-115.1761263 -36.06425373,-115.1761357 -36.06425297,-115.1761445 -36.06425217,-115.1761539 -36.06425136,-115.1761633 -36.0642506,-115.1761721 -36.0642498,-115.1761815 -36.06424899,-115.1761909 -36.06424823,-115.1761997 -36.06424743,-115.1762091 -36.06424662,-115.1762185 -36.06424586,-115.1762273 -36.06424506,-115.1762367 -36.06424425,-115.176246 -36.06424349,-115.1762549 -36.06424268,-115.1762643 -36.06424188,-115.1762736 -36.06424112,-115.1762825 -36.06424031,-115.1762919 -36.06423951,-115.1763012 -36.06423875,-115.1763101 -36.06423794,-115.1763195 -36.06423714,-115.1763288 -36.06423638,-115.1763377 -36.06423557,-115.176347 -36.06423477,-115.1763564 -36.06423401,-115.1763653 -36.0642332,-115.1763746 -36.0642324,-115.176384 -36.06423164,-115.1763929 -36.06423083,-115.1764022 -36.06423003,-115.1764116 -36.06422927,-115.1764204 -36.06422846,-115.1764298 -36.06422766,-115.1764392 -36.0642269,-115.176448 -36.06422609,-115.1764574 -36.06422529,-115.1764668 -36.06422453,-115.1764756 -36.06422372,-115.176485 -36.06422292,-115.1764944 -36.06422216,-115.1765032 -36.06422135,-115.1765126 -36.06422055,-115.176522 -36.06421979,-115.1765308 -36.06421898,-115.1765402 -36.06421818,-115.1765496 -36.06421742,-115.1765584 -36.06421661,-115.1765678 -36.06421581,-115.1765772 -36.06421505,-115.176586 -36.06421424,-115.1765954 -36.06421344,-115.1766048 -36.06421268,-115.1766136 -36.06421187,-115.176623 -36.06421107,-115.1766324 -36.06421031,-115.1766412 -36.0642095,-115.1766506 -36.0642087,-115.17666 -36.06420794,-115.1766688 -36.06420713,-115.1766782 -36.06420633,-115.1766876 -36.06420557,-115.1766964 -36.06420498,-115.1767058 -36.06420491,-115.1767152 -36.06420484,-115.1767241 -36.06420477,-115.1767335 -36.06420469,-115.176743 -36.06420463,-115.1767518 -36.06420455,-115.1767613 -36.06420448,-115.1767707 -36.06420441,-115.1767796 -36.06420434,-115.176789 -36.06420427,-115.1767985 -36.0642042,-115.1768073 -36.06420413,-115.1768168 -36.06420406,-115.1768262 -36.06420399,-115.1768351 -36.06420392,-115.1768445 -36.06420384,-115.176854 -36.06420378,-115.1768628 -36.0642037,-115.1768723 -36.06420363,-115.1768817 -36.06420356,-115.1768906 -36.06420349,-115.1769 -36.06420342,-115.1769095 -36.06420335,-115.1769183 -36.06420328,-115.1769278 -36.06420321,-115.1769372 -36.06420314,-115.1769461 -36.06420307,-115.1769555 -36.064203,-115.176965 -36.06420293,-115.1769738 -36.06420286,-115.1769833 -36.06420278,-115.1769927 -36.06420271,-115.1770016 -36.06420264,-115.177011 -36.06420257,-115.1770204 -36.0642025,-115.1770293 -36.06420243,-115.1770388 -36.06420236,-115.1770482 -36.06420229,-115.1770571 -36.06420222,-115.1770665 -36.06420215,-115.1770759 -36.06420208,-115.1770848 -36.06420201,-115.1770943 -36.06420284,-115.1771036 -36.0642037,-115.1771124 -36.06420461,-115.1771218 -36.06420552,-115.1771312 -36.06420638,-115.17714 -36.06420729,-115.1771494 -36.0642082,-115.1771587 -36.06420905,-115.1771676 -36.06420996,-115.1771769 -36.06421088,-115.1771863 -36.06421173,-115.1771951 -36.06421264,-115.1772045 -36.06421355,-115.1772138 -36.06421441,-115.1772227 -36.06421532,-115.177232 -36.06421623,-115.1772414 -36.06421709,-115.1772502 -36.064218,-115.1772596 -36.06421891,-115.177269 -36.06421977,-115.1772778 -36.06422068,-115.1772871 -36.06422159,-115.1772965 -36.06422245,-115.1773053 -36.06422336,-115.1773147 -36.06422427,-115.1773241 -36.06422513,-115.1773329 -36.06422604,-115.1773422 -36.06422695,-115.1773516 -36.06422781,-115.1773604 -36.06422872,-115.1773698 -36.06422963,-115.1773792 -36.06423048,-115.177388 -36.0642314,-115.1773974 -36.06423231,-115.1774067 -36.06423316,-115.1774155 -36.06423407,-115.1774249 -36.06423498,-115.1774343 -36.06423584,-115.1774431 -36.06423675,-115.1774525 -36.06423853,-115.1774616 -36.06424051,-115.1774701 -36.06424262,-115.1774792 -36.06424472,-115.1774883 -36.0642467,-115.1774968 -36.0642488,-115.1775059 -36.06425091,-115.177515 -36.06425289,-115.1775235 -36.06425499,-115.1775326 -36.0642571,-115.1775417 -36.06425908,-115.1775502 -36.06426118,-115.1775593 -36.06426328,-115.1775683 -36.06426526,-115.1775769 -36.06426737,-115.177586 -36.06426947,-115.177595 -36.06427145,-115.1776036 -36.06427356,-115.1776126 -36.06427566,-115.1776217 -36.06427764,-115.1776303 -36.06427974,-115.1776393 -36.06428185,-115.1776484 -36.06428383,-115.1776569 -36.06428593,-115.177666 -36.06428803,-115.1776751 -36.06429001,-115.1776836 -36.06429212,-115.1776927 -36.06429422,-115.1777018 -36.0642962,-115.1777103 -36.06429831,-115.1777194 -36.06430041,-115.1777285 -36.06430239,-115.177737 -36.06430449,-115.1777461 -36.0643066,-115.1777551 -36.06430858,-115.1777637 -36.06431068,-115.1777728 -36.06431279,-115.1777818 -36.06431477,-115.1777904 -36.06431687,-115.1777994 -36.06431897,-115.1778085 -36.06432095,-115.177817 -36.06432306,-115.1778261 -36.06432516,-115.1778352 -36.06432714,-115.1778437 -36.06432924,-115.1778528 -36.06433135,-115.1778619 -36.06433333,-115.1778704 -36.06433543,-115.1778795 -36.06433754,-115.1778886 -36.06433952,-115.1778971 -36.06434162,-115.1779062 -36.06434372,-115.1779152 -36.0643457,-115.1779238 -36.06434781,-115.1779329 -36.06435066,-115.1779415 -36.06435427,-115.1779492 -36.0643581,-115.1779574 -36.06436193,-115.1779656 -36.06436554,-115.1779733 -36.06436937,-115.1779814 -36.0643732,-115.1779896 -36.0643768,-115.1779973 -36.06438064,-115.1780055 -36.06438447,-115.1780136 -36.06438807,-115.1780213 -36.06439191,-115.1780295 -36.06439574,-115.1780377 -36.06439934,-115.1780454 -36.06440317,-115.1780535 -36.06440701,-115.1780617 -36.06441061,-115.1780694 -36.06441444,-115.1780776 -36.06441828,-115.1780857 -36.06442188,-115.1780934 -36.06442571,-115.1781016 -36.06442954,-115.1781098 -36.06443315,-115.1781175 -36.06443698,-115.1781256 -36.06444081,-115.1781338 -36.06444442,-115.1781415 -36.06444825,-115.1781497 -36.06445208,-115.1781578 -36.06445569,-115.1781655 -36.06445952,-115.1781737 -36.06446335,-115.1781819 -36.06446696,-115.1781896 -36.06447079,-115.1781977 -36.06447462,-115.1782059 -36.06447823,-115.1782136 -36.06448206,-115.1782218 -36.06448589,-115.1782299 -36.0644895,-115.1782376 -36.06449333,-115.1782458 -36.06449716,-115.178254 -36.06450077,-115.1782617 -36.0645046,-115.1782698 -36.06450843,-115.178278 -36.06451204,-115.1782857 -36.06451587,-115.1782939 -36.0645197,-115.178302 -36.0645233,-115.1783097 -36.06452714,-115.1783179 -36.06453097,-115.1783261 -36.06453457,-115.1783338 -36.0645384,-115.1783419 -36.06454224,-115.1783501 -36.06454584,-115.1783578 -36.06454967,-115.178366 -36.06455351,-115.1783741 -36.06455711,-115.1783818 -36.06456116,-115.1783898 -36.06456588,-115.1783973 -36.06457032,-115.1784043 -36.06457504,-115.1784117 -36.06457975,-115.1784191 -36.0645842,-115.1784261 -36.06458891,-115.1784336 -36.06459363,-115.178441 -36.06459807,-115.178448 -36.06460279,-115.1784554 -36.06460751,-115.1784629 -36.06461195,-115.1784699 -36.06461666,-115.1784773 -36.06462138,-115.1784847 -36.06462582,-115.1784917 -36.06463054,-115.1784992 -36.06463526,-115.1785066 -36.0646397,-115.1785136 -36.06464442,-115.178521 -36.06464913,-115.1785285 -36.06465357,-115.1785355 -36.06465829,-115.1785429 -36.06466301,-115.1785504 -36.06466745,-115.1785573 -36.06467217,-115.1785648 -36.06467688,-115.1785722 -36.06468132,-115.1785792 -36.06468604,-115.1785867 -36.06469076,-115.1785941 -36.0646952,-115.1786011 -36.06469992,-115.1786085 -36.06470464,-115.178616 -36.06470908,-115.178623 -36.06471379,-115.1786304 -36.06471851,-115.1786378 -36.06472295,-115.1786448 -36.06472767,-115.1786523 -36.06473239,-115.1786597 -36.06473683,-115.1786667 -36.06474155,-115.1786741 -36.064744,-115.1786825 -36.064744,-115.1786914 -36.064744,-115.1787008 -36.064744,-115.1787103 -36.064744,-115.1787192 -36.064744,-115.1787286 -36.064744,-115.178738 -36.06474728,-115.1787453 -36.06475253,-115.1787522 -36.06475777,-115.1787591 -36.06476271,-115.1787655 -36.06476795,-115.1787724 -36.0647732,-115.1787793 -36.06477813,-115.1787858 -36.06478338,-115.1787927 -36.06478862,-115.1787995 -36.06479356,-115.178806 -36.0647988,-115.1788129 -36.06480404,-115.1788198 -36.06480898,-115.1788262 -36.06481422,-115.1788331 -36.06481947,-115.17884 -36.0648244,-115.1788465 -36.06482965,-115.1788534 -36.06483489,-115.1788602 -36.06483983,-115.1788667 -36.06484507,-115.1788736 -36.06485032,-115.1788805 -36.06485525,-115.178887 -36.0648605,-115.1788938 -36.06486574,-115.1789007 -36.06487068,-115.1789072 -36.06487592,-115.1789141 -36.06488117,-115.1789209 -36.0648861,-115.1789274 -36.06489135,-115.1789343 -36.06489659,-115.1789412 -36.06490153,-115.1789477 -36.06490677,-115.1789545 -36.06491202,-115.1789614 -36.06491695,-115.1789679 -36.0649222,-115.1789748 -36.06492744,-115.1789817 -36.06493238,-115.1789881 -36.06493762,-115.178995 -36.06494287,-115.1790019 -36.0649478,-115.1790084 -36.06495305,-115.1790152 -36.06495829,-115.1790221 -36.06496323,-115.1790286 -36.06496847,-115.1790355 -36.06497371,-115.1790424 -36.06497865,-115.1790488 -36.06498389,-115.1790557 -36.06498914,-115.1790626 -36.06499407,-115.1790691 -36.06499932,-115.179076 -36.06500456,-115.1790828 -36.0650095,-115.1790893 -36.06501474,-115.1790962 -36.06501999,-115.1791031 -36.06502492,-115.1791095 -36.06503017,-115.1791164 -36.06503541,-115.1791233 -36.06504035,-115.1791298 -36.06504559,-115.1791367 -36.06505084,-115.1791435 -36.06505577,-115.17915 -36.06506102,-115.1791569 -36.06506626,-115.1791638 -36.0650712,-115.1791702 -36.06507644,-115.1791771 -36.06508169,-115.179184 -36.06508662,-115.1791905 -36.06509187,-115.1791974 -36.06509711,-115.1792042 -36.06510205,-115.1792107 -36.06510729,-115.1792176 -36.06511254,-115.1792245 -36.06511747,-115.179231 -36.06512272,-115.1792378 -36.06512796,-115.1792447 -36.0651329,-115.1792512 -36.06513814,-115.1792581 -36.06514338,-115.1792649 -36.06514832,-115.1792714 -36.06515356,-115.1792783 -36.06515881,-115.1792852 -36.06516375,-115.1792917 -36.06516899,-115.1792985 -36.06517423,-115.1793054 -36.06517917,-115.1793119 -36.06518441,-115.1793188 -36.06518966,-115.1793257 -36.06519459,-115.1793321 -36.06519984,-115.179339 -36.06520508,-115.1793459 -36.06521002,-115.1793524 -36.06521526,-115.1793592 -36.06522051,-115.1793661 -36.06522544,-115.1793726 -36.06523069,-115.1793795 -36.06523593,-115.1793864 -36.06524087,-115.1793928 -36.06524611,-115.1793997 -36.06525136,-115.1794066 -36.06525629,-115.1794131 -36.06526204,-115.1794193 -36.06526786,-115.1794254 -36.06527334,-115.1794312 -36.06527917,-115.1794373 -36.06528499,-115.1794435 -36.06529047,-115.1794493 -36.06529629,-115.1794554 -36.06530212,-115.1794615 -36.0653076,-115.1794673 -36.06531342,-115.1794734 -36.06531925,-115.1794796 -36.06532473,-115.1794853 -36.06533055,-115.1794915 -36.06533637,-115.1794976 -36.06534185,-115.1795034 -36.06534768,-115.1795095 -36.0653535,-115.1795156 -36.06535898,-115.1795214 -36.06536481,-115.1795275 -36.06537063,-115.1795337 -36.06537611,-115.1795394 -36.06538193,-115.1795456 -36.06538776,-115.1795517 -36.06539324,-115.1795575 -36.06539906,-115.1795636 -36.06540488,-115.1795698 -36.06541037,-115.1795755 -36.06541619,-115.1795817 -36.06542201,-115.1795878 -36.06542749,-115.1795936 -36.06543332,-115.1795997 -36.06543914,-115.1796058 -36.06544462,-115.1796116 -36.06545044,-115.1796177 -36.06545627,-115.1796239 -36.06546175,-115.1796296 -36.06546757,-115.1796358 -36.0654734,-115.1796419 -36.06547888,-115.1796477 -36.0654847,-115.1796538 -36.06549052,-115.1796599 -36.06549601,-115.1796657 -36.06550183,-115.1796719 -36.06550765,-115.179678 -36.06551313,-115.1796838 -36.06551896,-115.1796899 -36.06552478,-115.179696 -36.06553026,-115.1797018 -36.06553608,-115.1797079 -36.06554191,-115.1797141 -36.06554739,-115.1797198 -36.06555321,-115.179726 -36.06555904,-115.1797321 -36.06556452,-115.1797379 -36.06557034,-115.179744 -36.06557616,-115.1797501 -36.06558165,-115.1797559 -36.06558747,-115.179762 -36.06559329,-115.1797682 -36.06559877,-115.179774 -36.0656046,-115.1797801 -36.06561042,-115.1797862 -36.0656159,-115.179792 -36.06562172,-115.1797981 -36.06562755,-115.1798043 -36.06563303,-115.17981 -36.06563971,-115.1798146 -36.0656464,-115.1798193 -36.06565269,-115.1798236 -36.06565937,-115.1798282 -36.06566605,-115.1798329 -36.06567234,-115.1798372 -36.06567902,-115.1798418 -36.0656857,-115.1798464 -36.06569199,-115.1798508 -36.06569867,-115.1798554 -36.06570535,-115.17986 -36.06571164,-115.1798644 -36.06571832,-115.179869 -36.065725,-115.1798736 -36.06573129,-115.179878 -36.06573797,-115.1798826 -36.06574466,-115.1798872 -36.06575094,-115.1798916 -36.06575763,-115.1798962 -36.06576431,-115.1799008 -36.0657706,-115.1799051 -36.06577728,-115.1799098 -36.06578396,-115.1799144 -36.06579025,-115.1799187 -36.06579693,-115.1799233 -36.06580361,-115.179928 -36.0658099,-115.1799323 -36.06581658,-115.1799369 -36.06582326,-115.1799416 -36.06582955,-115.1799459 -36.06583623,-115.1799505 -36.06584292,-115.1799551 -36.0658492,-115.1799595 -36.06585589,-115.1799641 -36.06586257,-115.1799687 -36.06586886,-115.1799731 -36.06587554,-115.1799777 -36.06588222,-115.1799823 -36.06588851,-115.1799867 -36.06589519,-115.1799913 -36.06590187,-115.1799959 -36.065902,-115.179996 -0.0,0.0 diff --git a/app/qml/CustomLabel.qml b/app/qml/CustomLabel.qml deleted file mode 100644 index 12387a1..0000000 --- a/app/qml/CustomLabel.qml +++ /dev/null @@ -1,9 +0,0 @@ -import QtQuick 2.1 - -Text { - verticalAlignment: Text.AlignVCenter - font.family: "Lato" - font.weight: Font.Light - color: "#000000" - font.pixelSize: 24 -} diff --git a/app/qml/DateAndTime.qml b/app/qml/DateAndTime.qml deleted file mode 100644 index c9e2af7..0000000 --- a/app/qml/DateAndTime.qml +++ /dev/null @@ -1,37 +0,0 @@ -import QtQuick 2.0 -import QtQuick.Controls 2.2 -import QtQuick.Layouts 1.0 - -Item { - id: dateAndTime - - width: 53 * hspan - height: 33 * vspan - - property int hspan: 4 - property int vspan: 1 - property var currentDate: new Date(); - - RowLayout { - anchors.top: parent.top - anchors.horizontalCenter: parent.horizontalCenter - spacing: 10 - - CustomLabel { - font.capitalization: Font.AllUppercase - text: Qt.formatDateTime(dateAndTime.currentDate, "HH:mm") - font.pixelSize: 38 - color: "#000000" - } - } - - Timer { - interval: 60000 - running: true - repeat: true - - onTriggered: { - dateAndTime.currentDate = new Date(); - } - } -} diff --git a/app/qml/Main.qml b/app/qml/Main.qml index dcad4ba..4139cb9 100644 --- a/app/qml/Main.qml +++ b/app/qml/Main.qml @@ -1,24 +1,16 @@ -import QtGraphicalEffects 1.0 import QtQuick 2.0 import QtQuick.Controls 2.2 -import QtQuick.Layouts 1.0 -import QtWebSockets 1.0 import "qrc:/qml" ApplicationWindow { id: window - title: "QT MapboxGL Turn By Turn Navigation Demo" + title: "Turn By Turn Navigation Demo" height: 720 width: 640 visible: true - function startDemo(visible) { - console.log("startDemo") - mapwindow.do_autostart() - } - Item { anchors.centerIn: parent width: parent.width @@ -27,6 +19,7 @@ ApplicationWindow { MapWindow { id:mapwindow anchors.fill: parent + objectName: "mapwindow" } } } diff --git a/app/qml/MapWindow.qml b/app/qml/MapWindow.qml index 14b6374..397e268 100644 --- a/app/qml/MapWindow.qml +++ b/app/qml/MapWindow.qml @@ -7,101 +7,24 @@ import com.mapbox.cheap_ruler 1.0 Item { id: mapWindow - // Km/h - property int carSpeed: 70 - property bool navigating: false - property bool zoomstate: false - + property int disOffset: 70 property real rotateAngle: 0 - property var startPoint: QtPositioning.coordinate(36.12546,-115.173) - property var endPoint: QtPositioning.coordinate(36.0659063, -115.1800443) - - states: [ - State { - name: "" - PropertyChanges { target: map; tilt: 0; bearing: 0; zoomLevel: map.zoomLevel } - }, - State { - name: "navigating" - PropertyChanges { target: map; tilt: 60; zoomLevel: 20 } - } - ] - - transitions: [ - Transition { - to: "*" - RotationAnimation { target: map; property: "bearing"; duration: 100; direction: RotationAnimation.Shortest } - NumberAnimation { target: map; property: "zoomLevel"; duration: 100 } - NumberAnimation { target: map; property: "tilt"; duration: 100 } - } - ] - - state: navigating ? "navigating" : "" - - // Direction board - Image { - id: backgroudBoard + property var startPoint + property var endPoint - anchors.fill: parent - visible: map.showBoard - source: "qrc:simple-bottom-background-black.png" + //turn by turn board view + TbtBoard { + id: tbt_board z: 1 + visible: false + anchors.fill: parent } - Image { - id: turnDirectionBoard - - anchors.bottom: distanceBoard.top - visible: map.showDirection - width : parent.height - turnInstructionsBoard.height - distanceBoard.height - height: parent.height - turnInstructionsBoard.height - distanceBoard.height - z: 3 - } - - CustomLabel { - id: distanceBoard - - anchors.bottom: turnInstructionsBoard.top - z: 3 - visible: map.showDirection - font.pixelSize: 45 - color: "#FFFFFF" - width:backgroudBoard.width - horizontalAlignment: Text.AlignHCenter - } - - CustomLabel { - id: turnInstructionsBoard - - anchors.bottom: parent.bottom - z: 3 - visible: map.showDirection - font.pixelSize: 30 - color: "#FFFFFF" - width:backgroudBoard.width - horizontalAlignment: Text.AlignHCenter - wrapMode: Text.Wrap - } - - CustomLabel { - id: naviDoneBoard - - anchors.bottom: parent.bottom - z: 3 - visible: map.showNaviDone - font.pixelSize: 38 - color: "#FFFFFF" - text: "Arrive destination.Auto Navi will restart in 5 seconds." - } - + //mapview and route views Map { id: map anchors.fill: parent - property bool showBoard: false - property bool showDirection: false - property bool showNaviDone: false - plugin: Plugin { name: "mapboxgl" @@ -126,37 +49,19 @@ Item { } } - center: (mapWindow.navigating && !mapWindow.zoomstate) ? ruler.currentPosition : startPoint - zoomLevel: 12 - minimumZoomLevel: 0 - maximumZoomLevel: 20 - tilt: 0 - + center: ruler.currentPosition + zoomLevel: 20 + tilt: 60 + gesture.acceptedGestures:MapGestureArea.NoGesture copyrightsVisible: false - MouseArea { - anchors.fill: parent - - onWheel: { - mapWindow.zoomstate = true - wheel.accepted = false - } - } - gesture.onPanStarted: { - mapWindow.zoomstate = true - } - - gesture.onPinchStarted: { - mapWindow.zoomstate = true - } - RotationAnimation on bearing { id: bearingAnimation duration: 250 alwaysRunToEnd: false direction: RotationAnimation.Shortest - running: mapWindow.navigating + running: true } Location { @@ -165,7 +70,7 @@ Item { } onCenterChanged: { - if (previousLocation.coordinate === center || !mapWindow.navigating) + if (previousLocation.coordinate === center) return; bearingAnimation.to = previousLocation.coordinate.azimuthTo(center); @@ -174,12 +79,6 @@ Item { previousLocation.coordinate = center; } - function updateRoute() { - routeQuery.clearWaypoints(); - routeQuery.addWaypoint(startMarker.coordinate); - routeQuery.addWaypoint(endMarker.coordinate); - } - MapQuickItem { id: startMarker @@ -187,19 +86,8 @@ Item { id: greenMarker source: "qrc:///marker-green.png" } - - coordinate : startPoint anchorPoint.x: greenMarker.width / 2 anchorPoint.y: greenMarker.height / 2 - - MouseArea { - drag.target: parent - anchors.fill: parent - - onReleased: { - map.updateRoute(); - } - } } MapQuickItem { @@ -209,19 +97,8 @@ Item { id: redMarker source: "qrc:///marker-end.png" } - - coordinate : endPoint anchorPoint.x: redMarker.width / 2 anchorPoint.y: redMarker.height / 2 - - MouseArea { - drag.target: parent - anchors.fill: parent - - onReleased: { - map.updateRoute(); - } - } } MapItemView { @@ -244,7 +121,7 @@ Item { sourceItem: Image { id: carMarker - source: "qrc:///car-marker2.png" + source: "qrc:///car-marker.png" transform: Rotation { origin.x: carMarker.width / 2; origin.y: carMarker.height / 2; @@ -269,132 +146,76 @@ Item { } } + //add route view in the map + function updateRoute() { + routeQuery.clearWaypoints(); + routeQuery.addWaypoint(startMarker.coordinate); + routeQuery.addWaypoint(endMarker.coordinate); + map.addMapItem(startMarker) + map.addMapItem(endMarker) + } + + //clear route view in the map + function clearRoute() { + routeQuery.clearWaypoints(); + routeModel.reset(); + map.removeMapItem(startMarker) + map.removeMapItem(endMarker) + } + CheapRuler { id: ruler - onArrivedDest: - { - map.showBoard = true; - map.showDirection = false; - map.showNaviDone = true; - restartnaviDemo.start() - } - onCurrentDistanceChanged: { var total = 0; - var total2 = 0; var i = 0; - var j = 0; - var alltime = routeModel.get(0).travelTime; - var alldistance = ruler.distance*1000; - - // XXX: Use car speed in meters to pre-warn the turn instruction - while (total - mapWindow.carSpeed < ruler.currentDistance * 1000 && i < routeModel.get(0).segments.length) - { - total += routeModel.get(0).segments[i++].maneuver.distanceToNextInstruction; - } + var alldistance = ruler.distance * 1000; - if(i >= routeModel.get(0).segments.length) - { - total = alldistance; - } - - while (total2 < ruler.currentDistance * 1000 && j < routeModel.get(0).segments.length) - { - total2 += routeModel.get(0).segments[j++].maneuver.distanceToNextInstruction; - } - - if(j >= routeModel.get(0).segments.length) - { - total2 = alldistance; - } - - var dis = (total2 - ruler.currentDistance * 1000).toFixed(1); - - // Set board status - if(dis < mapWindow.carSpeed && i < routeModel.get(0).segments.length) - { - map.showBoard = true; - map.showDirection = true; - map.showNaviDone = false; - } - else - { - map.showBoard = false; - map.showDirection = false; - map.showNaviDone = false; - } - - // Set distance - if(dis > 1000) - { - distanceBoard.text = (dis / 1000).toFixed(1) + " km"; - } - else - { - distanceBoard.text = dis + " m"; - } - - // Set traval time - var travaltimesec=((1 - (ruler.currentDistance * 1000)/alldistance)*alltime).toFixed(0); - - if((travaltimesec/3600)>=1) - { - travaltime.text = (travaltimesec/3600).toFixed(0) + "h" + ((travaltimesec%3600)/60).toFixed(0) + "min"; - } - else - { - travaltime.text = (travaltimesec/60).toFixed(0) + "min"; - } - - // Set turn instruction - turnInstructionsBoard.text = routeModel.get(0).segments[i - 1].maneuver.instructionText; - - // Set turn direction - if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionForward) - { - } - else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionLightRight) - { - turnDirectionBoard.source = "qrc:arrow-r-30-full.png"; - } - else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionRight) - { - turnDirectionBoard.source = "qrc:arrow-r-45-full.png"; - } - else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionHardRight) - { - turnDirectionBoard.source = "qrc:arrow-r-75-full.png"; - } - else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionUTurnRight) - { - //TODO modify qtlocation U-Turn best.For test, change app source. - turnDirectionBoard.source = "qrc:arrow-l-180-full.png"; - } - else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionLightLeft) - { - turnDirectionBoard.source = "qrc:arrow-l-30-full.png"; - } - else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionLeft) - { - turnDirectionBoard.source = "qrc:arrow-l-45-full.png"; - } - else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionHardLeft) - { - turnDirectionBoard.source = "qrc:arrow-l-75-full.png"; - } - else if(routeModel.get(0).segments[i - 1].maneuver.direction === RouteManeuver.DirectionUTurnLeft) - { - //TODO modify qtlocation U-Turn best.For test, change app source. - turnDirectionBoard.source = "qrc:arrow-r-180-full.png"; - } - else + if((routeModel.status === RouteModel.Ready) + && (routeModel.count === 1)) { + // XXX: Use car speed in meters to pre-warn the turn instruction + while (total < ruler.currentDistance && i < routeModel.get(0).segments.length) + { + total += routeModel.get(0).segments[i++].maneuver.distanceToNextInstruction; + } + + //show the tbt board(it will be always show when demo start) + tbt_board.visible = true + + // Set turn instruction + tbt_board.do_setTurnInstructions(routeModel.get(0).segments[i].maneuver.instructionText) + tbt_board.state = routeModel.get(0).segments[i].maneuver.direction + + //when goto the last instruction,set the states to "arriveDest" + if(i >= (routeModel.get(0).segments.length-1)) + { + total = alldistance; + tbt_board.state = "arriveDest"; + } + + var dis = (total - ruler.currentDistance).toFixed(1); + + // Set distance + tbt_board.do_setDistance(dis) + + // Set board status + if(dis < mapWindow.disOffset && i < routeModel.get(0).segments.length) + { + //show the tbt board(the big one) + tbt_board.do_showTbtboard(true) + } + else + { + //disvisible the tbt board(the big one) + tbt_board.do_showTbtboard(false) + } } } } } + //the route view display by RouteModel RouteModel { id: routeModel @@ -410,147 +231,51 @@ Item { value: "pk.eyJ1IjoicXRzZGsiLCJhIjoiY2l5azV5MHh5MDAwdTMybzBybjUzZnhxYSJ9.9rfbeqPjX2BusLRDXHCOBA" } } - - Component.onCompleted: { - if (map) { - map.updateRoute(); - } - } } RouteQuery { id: routeQuery } - Image { - id: bottombackgroud - anchors.left: parent.left - anchors.bottom: parent.bottom - width:parent.width - height: 100 - visible: mapWindow.navigating && !map.showBoard && !map.showDirection && !map.showNaviDone - source: "qrc:simple-bottom-background-white.png" - z: 1 - } - - Image { - id: carCurrent - anchors.left: bottombackgroud.left - anchors.verticalCenter: bottombackgroud.verticalCenter - z: 3 - - visible: !(mapWindow.navigating && !mapWindow.zoomstate) - source: "qrc:car-focus.png" - - MouseArea { - id: area - - anchors.fill: parent - - onClicked: { - mapWindow.zoomstate = false - do_startnavidemo() - } - } - - scale: area.pressed ? 0.85 : 1.0 - - Behavior on scale { - NumberAnimation {} - } - } - - CustomLabel { - id: travaltime - anchors.left: carCurrent.right - anchors.verticalCenter: bottombackgroud.verticalCenter - visible: mapWindow.navigating && !map.showBoard && !map.showDirection && !map.showNaviDone - z: 3 - font.pixelSize: 38 - } - - Row { - anchors.horizontalCenter: bottombackgroud.horizontalCenter - anchors.verticalCenter: bottombackgroud.verticalCenter - visible: mapWindow.navigating && !map.showBoard && !map.showDirection && !map.showNaviDone - spacing: 10 - z:3 - DateAndTime {} - } - - - Image { - id: stopdemo - anchors.right: parent.right - anchors.bottom:parent.bottom - z: 3 - - visible: mapWindow.navigating && !map.showBoard && !map.showDirection && !map.showNaviDone - source: "qrc:car-marker.png" - - MouseArea { - anchors.fill: parent - - onClicked: { - do_stopnavidemo(); - } - - onReleased: { - map.updateRoute(); - } - } - } - - Timer { - id: naviTimer - repeat: false - interval: 5000 - triggeredOnStart: false - onTriggered: { - console.log("onTriggered") - do_startnavidemo() - mapWindow.zoomstate = false - + Component.onCompleted: { + //request the route info when map load finish + if (ruler) { + ruler.initRouteInfo(); } } - Timer { - id: restartnaviDemo - repeat: false - interval: 5000 - triggeredOnStart: false - onTriggered: { - console.log("onTriggered") - do_stopnavidemo() + //the functions can be called by outside + //add route signal function + function do_addRoutePoint(poi_Lat_s, poi_Lon_s, poi_Lat_e, poi_Lon_e) { + //set the startPoint and endPoint + startPoint= QtPositioning.coordinate(poi_Lat_s,poi_Lon_s); + endPoint = QtPositioning.coordinate(poi_Lat_e,poi_Lon_e); + startMarker.coordinate = startPoint; + endMarker.coordinate = endPoint; + //update the route view + if (map) { map.updateRoute(); - mapWindow.zoomstate = false - do_startnavidemo() } } - function do_setCoordinate(latitude,longitude) { - ruler.setCurrentCoordinate(latitude,longitude); - } - - function do_startnavidemo() { - if(mapWindow.navigating == false) - { - ruler.startnaviDemo() - mapWindow.navigating = true - } + //set the current position + function do_setCoordinate(latitude,longitude,direction,distance) { + ruler.setCurrentPosition(latitude, longitude, distance); } + //stop navidemo signal function do_stopnavidemo() { - if(mapWindow.navigating == true) - { - ruler.stopnaviDemo() - mapWindow.navigating = false - ruler.setCurrentCoordinate("36.12546","-115.173"); + //disvisible the tbt board + tbt_board.visible = false + //clear the routeview + if (map) { + map.clearRoute(); } } - function do_autostart() { - console.log("naviTimer start") - naviTimer.start() + //arrvice the destination signal + function do_arrivedest(){ + //disvisible the tbt board + tbt_board.visible = false } } diff --git a/app/qml/TbtBoard.qml b/app/qml/TbtBoard.qml new file mode 100644 index 0000000..cf6f537 --- /dev/null +++ b/app/qml/TbtBoard.qml @@ -0,0 +1,187 @@ +import QtQuick 2.0 + +//turn by turn board view +Item { + id: tbt_board + + property bool showboard: false + + // the backgroud image(the small one) + Image { + id: whitebackgroud + visible: !showboard + anchors.top: parent.top + width:turnDirection.width + height:turnDirection.height + distance.height + source: "qrc:simple-background-white.png" + z: 1 + } + + // turn direction arrow board image(the small one) + Image { + id: turnDirection + visible: !showboard + anchors.top: parent.top + z: 3 + } + + // the distance to the next crossing road(textview)(the small one) + Text { + id: distance + visible: !showboard + anchors.top: turnDirection.bottom + z: 3 + font.pixelSize: 23 + width:turnDirection.width + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + font.family: "Lato" + font.weight: Font.Light + color: "#000000" + } + + // the backgroud image + Image { + id: backgroudBoard + visible: showboard + anchors.fill: parent + source: "qrc:simple-bottom-background-black.png" + z: 1 + } + + // turn direction arrow board image + Image { + id: turnDirectionBoard + visible: showboard + width : parent.height - turnInstructionsBoard.height - distanceBoard.height + height: parent.height - turnInstructionsBoard.height - distanceBoard.height + anchors.centerIn: parent + z: 3 + } + + // the distance to the next crossing road(textview) + Text { + id: distanceBoard + visible: showboard + anchors.bottom: turnInstructionsBoard.top + z: 3 + font.pixelSize: 45 + width:tbt_board.width + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + font.family: "Lato" + font.weight: Font.Light + color: "#FFFFFF" + } + + // the description of the next crossing road(textview) + Text { + id: turnInstructionsBoard + visible: showboard + anchors.bottom: parent.bottom + z: 3 + font.pixelSize: 30 + width:tbt_board.width + wrapMode: Text.Wrap + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + font.family: "Lato" + font.weight: Font.Light + color: "#FFFFFF" + } + + // the cases of direction arrow board + states: [ + State { + name: "arriveDest" //arrive the destination + PropertyChanges { target: turnDirectionBoard; source: "qrc:destination_full.png" } + PropertyChanges { target: turnDirection; source: "qrc:destination.png" } + }, + State { + name: "0" // NoDirection + PropertyChanges { target: turnDirectionBoard; source: "" } + PropertyChanges { target: turnDirection; source: "" } + }, + State { + name: "1" // DirectionForward + PropertyChanges { target: turnDirectionBoard; source: "" } + PropertyChanges { target: turnDirection; source: "" } + }, + State { + name: "2" // DirectionBearRight + PropertyChanges { target: turnDirectionBoard; source: "" } + PropertyChanges { target: turnDirection; source: "" } + }, + State { + name: "3" // DirectionLightRight + PropertyChanges { target: turnDirectionBoard; source: "qrc:arrow-r-30-full.png" } + PropertyChanges { target: turnDirection; source: "qrc:arrow-r-30-large.png" } + }, + State { + name: "4" // DirectionRight + PropertyChanges { target: turnDirectionBoard; source: "qrc:arrow-r-45-full.png" } + PropertyChanges { target: turnDirection; source: "qrc:arrow-r-45-large.png" } + }, + State { + name: "5" // DirectionHardRight + PropertyChanges { target: turnDirectionBoard; source: "qrc:arrow-r-75-full.png" } + PropertyChanges { target: turnDirection; source: "qrc:arrow-r-75-large.png" } + }, + State { + name: "6" // DirectionUTurnRight + //TODO modify qtlocation U-Turn best.For test, change app source. + PropertyChanges { target: turnDirectionBoard; source: "qrc:arrow-l-180-full.png" } + PropertyChanges { target: turnDirection; source: "qrc:arrow-l-180-large.png" } + }, + State { + name: "7" // DirectionUTurnLeft + //TODO modify qtlocation U-Turn best.For test, change app source. + PropertyChanges { target: turnDirectionBoard; source: "qrc:arrow-r-180-full.png" } + PropertyChanges { target: turnDirection; source: "qrc:arrow-r-180-large.png" } + }, + State { + name: "8" // DirectionHardLeft + PropertyChanges { target: turnDirectionBoard; source: "qrc:arrow-l-75-full.png" } + PropertyChanges { target: turnDirection; source: "qrc:arrow-l-75-large.png" } + }, + State { + name: "9" // DirectionLeft + PropertyChanges { target: turnDirectionBoard; source: "qrc:arrow-l-45-full.png" } + PropertyChanges { target: turnDirection; source: "qrc:arrow-l-45-large.png" } + }, + State { + name: "10" // DirectionLightLeft + PropertyChanges { target: turnDirectionBoard; source: "qrc:arrow-l-30-full.png" } + PropertyChanges { target: turnDirection; source: "qrc:arrow-l-30-large.png" } + }, + State { + name: "11" // DirectionBearLeft + PropertyChanges { target: turnDirectionBoard; source: "" } + PropertyChanges { target: turnDirection; source: "" } + } + ] + + // Set distance + function do_setDistance(dis) { + if(dis > 1000) + { + distanceBoard.text = (dis / 1000).toFixed(1) + " km" + } + else + { + distanceBoard.text = dis + " m" + } + + distance.text = (((dis/100).toFixed(0))*100) +"m" + } + + //set turnInstructions + function do_setTurnInstructions(turnInstructions) { + turnInstructionsBoard.text = turnInstructions + } + + //show the tbt board(the big one) + function do_showTbtboard(mvisible) { + showboard = mvisible + } +} diff --git a/app/qml/qmldir b/app/qml/qmldir index c59f9cd..7bbd751 100644 --- a/app/qml/qmldir +++ b/app/qml/qmldir @@ -1,3 +1,2 @@ -CustomLabel 1.0 CustomLabel.qml -DateAndTime 1.0 DateAndTime.qml MapWindow 1.0 MapWindow.qml +TbtBoard 1.0 TbtBoard.qml diff --git a/package/Coordinate.txt b/package/Coordinate.txt deleted file mode 100644 index 045f4aa..0000000 --- a/package/Coordinate.txt +++ /dev/null @@ -1,12390 +0,0 @@ -36.12546,-115.173 -36.12546,-115.1729906 -36.12545999,-115.1729817 -36.12545999,-115.1729722 -36.12545998,-115.1729628 -36.12545998,-115.1729533 -36.12545997,-115.1729445 -36.12545997,-115.1729334 -36.12545996,-115.172925 -36.12545996,-115.1729161 -36.12545995,-115.1729078 -36.12545995,-115.1728984 -36.12545994,-115.1728911 -36.12545994,-115.1728828 -36.12545994,-115.1728756 -36.12545993,-115.1728661 -36.12545993,-115.1728578 -36.12545992,-115.17285 -36.12545992,-115.1728412 -36.12545991,-115.1728317 -36.12545991,-115.1728223 -36.1254599,-115.1728134 -36.1254599,-115.1728039 -36.12545989,-115.1727951 -36.12545989,-115.1727856 -36.12545989,-115.1727762 -36.12545988,-115.1727673 -36.12545988,-115.1727578 -36.12545987,-115.1727484 -36.12545987,-115.1727395 -36.12545986,-115.1727301 -36.12545986,-115.1727206 -36.12545985,-115.1727117 -36.12545985,-115.1727023 -36.12545984,-115.1726929 -36.12545984,-115.172684 -36.12545983,-115.1726745 -36.12545983,-115.1726651 -36.12545982,-115.1726562 -36.12545982,-115.1726468 -36.12545981,-115.1726373 -36.12545981,-115.1726284 -36.1254598,-115.172619 -36.1254598,-115.1726095 -36.1254598,-115.1726007 -36.12545979,-115.1725912 -36.12545979,-115.1725818 -36.12545978,-115.1725729 -36.12545978,-115.1725634 -36.12545977,-115.172554 -36.12545977,-115.1725451 -36.12545976,-115.1725357 -36.12545976,-115.1725262 -36.12545975,-115.1725173 -36.12545975,-115.1725079 -36.12545974,-115.1724985 -36.12545974,-115.1724896 -36.12545973,-115.1724801 -36.12545973,-115.1724707 -36.12545972,-115.1724618 -36.12545972,-115.1724524 -36.12545971,-115.1724429 -36.12545971,-115.172434 -36.1254597,-115.1724246 -36.1254597,-115.1724151 -36.1254597,-115.1724057 -36.12545969,-115.1723968 -36.12545969,-115.1723874 -36.12545968,-115.1723779 -36.12545968,-115.172369 -36.12545967,-115.1723596 -36.12545967,-115.1723502 -36.12545966,-115.1723413 -36.12545966,-115.1723318 -36.12545965,-115.1723224 -36.12545965,-115.1723135 -36.12545964,-115.1723041 -36.12545964,-115.1722946 -36.12545963,-115.1722857 -36.12545963,-115.1722763 -36.12545962,-115.1722669 -36.12545962,-115.172258 -36.12545961,-115.1722485 -36.12545961,-115.1722391 -36.12545961,-115.1722302 -36.1254596,-115.1722208 -36.1254596,-115.1722113 -36.12545959,-115.1722024 -36.12545959,-115.172193 -36.12545958,-115.1721835 -36.12545958,-115.1721747 -36.12545957,-115.1721652 -36.12545957,-115.1721558 -36.12545956,-115.1721469 -36.12545956,-115.1721374 -36.12545955,-115.172128 -36.12545955,-115.1721191 -36.12545954,-115.1721097 -36.12545954,-115.1721002 -36.12545953,-115.1720913 -36.12545953,-115.1720819 -36.12545952,-115.1720725 -36.12545952,-115.1720636 -36.12545951,-115.1720541 -36.12545951,-115.1720447 -36.12545951,-115.1720358 -36.1254595,-115.1720264 -36.1254595,-115.1720169 -36.12545949,-115.172008 -36.12545949,-115.1719986 -36.12545948,-115.1719891 -36.12545948,-115.1719803 -36.12545947,-115.1719708 -36.12545947,-115.1719614 -36.12545946,-115.1719525 -36.12545946,-115.171943 -36.12545945,-115.1719336 -36.12545945,-115.1719247 -36.12545944,-115.1719153 -36.12545944,-115.1719058 -36.12545943,-115.1718969 -36.12545943,-115.1718875 -36.12545942,-115.1718781 -36.12545942,-115.1718692 -36.12545941,-115.1718597 -36.12545941,-115.1718503 -36.12545941,-115.1718414 -36.1254594,-115.171832 -36.1254594,-115.1718225 -36.12545939,-115.1718136 -36.12545939,-115.1718042 -36.12545938,-115.1717947 -36.12545938,-115.1717859 -36.12545937,-115.1717764 -36.12545937,-115.171767 -36.12545936,-115.1717581 -36.12545936,-115.1717486 -36.12545935,-115.1717398 -36.12545935,-115.1717303 -36.12545934,-115.1717209 -36.12545934,-115.171712 -36.12545933,-115.1717026 -36.12545933,-115.1716931 -36.12545932,-115.1716842 -36.12545932,-115.1716748 -36.12545932,-115.1716653 -36.12545931,-115.1716565 -36.12545931,-115.171647 -36.1254593,-115.1716376 -36.1254593,-115.1716287 -36.12545929,-115.1716192 -36.12545929,-115.1716098 -36.12545928,-115.1716009 -36.12545928,-115.1715915 -36.12545927,-115.171582 -36.12545927,-115.1715731 -36.12545926,-115.1715637 -36.12545926,-115.1715543 -36.12545925,-115.1715454 -36.12545925,-115.1715359 -36.12545924,-115.1715265 -36.12545924,-115.1715176 -36.12545923,-115.1715082 -36.12545923,-115.1714987 -36.12545923,-115.1714898 -36.12545922,-115.1714804 -36.12545922,-115.1714709 -36.12545921,-115.1714621 -36.12545921,-115.1714526 -36.1254592,-115.1714432 -36.1254592,-115.1714343 -36.12545919,-115.1714248 -36.12545919,-115.1714154 -36.12545918,-115.1714065 -36.12545918,-115.1713971 -36.12545917,-115.1713876 -36.12545917,-115.1713787 -36.12545916,-115.1713693 -36.12545916,-115.1713599 -36.12545915,-115.171351 -36.12545915,-115.1713415 -36.12545914,-115.1713321 -36.12545914,-115.1713232 -36.12545913,-115.1713138 -36.12545913,-115.1713043 -36.12545913,-115.1712954 -36.12545912,-115.171286 -36.12545912,-115.1712765 -36.12545911,-115.1712677 -36.12545911,-115.1712582 -36.1254591,-115.1712488 -36.1254591,-115.1712399 -36.12545909,-115.1712304 -36.12545909,-115.171221 -36.12545908,-115.1712121 -36.12545908,-115.1712027 -36.12545907,-115.1711932 -36.12545907,-115.1711843 -36.12545906,-115.1711749 -36.12545906,-115.1711655 -36.12545905,-115.1711566 -36.12545905,-115.1711471 -36.12545904,-115.1711377 -36.12545904,-115.1711288 -36.12545904,-115.1711194 -36.12545903,-115.1711099 -36.12545903,-115.171101 -36.12545902,-115.1710916 -36.12545902,-115.1710822 -36.12545901,-115.1710733 -36.12545901,-115.1710638 -36.125459,-115.1710544 -36.12546164,-115.1710466 -36.12546616,-115.1710389 -36.12547068,-115.1710313 -36.12547494,-115.1710241 -36.12547946,-115.1710165 -36.12548398,-115.1710089 -36.12548823,-115.1710017 -36.12549276,-115.1709941 -36.12549728,-115.1709865 -36.12550153,-115.1709793 -36.12550605,-115.1709717 -36.12551058,-115.1709641 -36.12551483,-115.1709569 -36.12551935,-115.1709493 -36.12552387,-115.1709416 -36.12552813,-115.1709345 -36.12552945,-115.1709254 -36.12553,-115.170916 -36.12553052,-115.1709071 -36.12553108,-115.1708977 -36.12553163,-115.1708883 -36.12553215,-115.1708794 -36.12553271,-115.17087 -36.1255338,-115.1708607 -36.1255354,-115.170852 -36.12553711,-115.1708428 -36.12553946,-115.1708339 -36.12554233,-115.1708257 -36.12554539,-115.1708171 -36.12554845,-115.1708084 -36.1255524,-115.1708012 -36.12555793,-115.1707947 -36.12556347,-115.1707881 -36.12556868,-115.170782 -36.12557422,-115.1707755 -36.12558029,-115.17077 -36.12558709,-115.1707671 -36.12559432,-115.1707639 -36.12560155,-115.1707608 -36.12560836,-115.1707579 -36.12561502,-115.1707558 -36.12561529,-115.1707652 -36.12561555,-115.1707741 -36.12561582,-115.1707835 -36.12561609,-115.170793 -36.12561635,-115.1708018 -36.12561662,-115.1708113 -36.1256169,-115.1708207 -36.12561715,-115.1708296 -36.12561742,-115.170839 -36.1256177,-115.1708485 -36.12561795,-115.1708573 -36.1256182,-115.1708668 -36.12561844,-115.1708762 -36.12561866,-115.1708851 -36.1256189,-115.1708945 -36.12561914,-115.170904 -36.12561936,-115.1709129 -36.1256196,-115.1709223 -36.12561984,-115.1709317 -36.12562007,-115.1709406 -36.12562031,-115.17095 -36.12562054,-115.1709595 -36.12562077,-115.1709684 -36.12562101,-115.1709778 -36.12562125,-115.1709872 -36.12562147,-115.1709961 -36.12562171,-115.1710056 -36.12562195,-115.171015 -36.12562216,-115.1710239 -36.12562239,-115.1710333 -36.12562262,-115.1710428 -36.12562284,-115.1710522 -36.12562305,-115.1710611 -36.12562328,-115.1710705 -36.1256235,-115.17108 -36.12562372,-115.1710888 -36.12562394,-115.1710983 -36.12562417,-115.1711077 -36.12562438,-115.1711166 -36.1256246,-115.171126 -36.12562483,-115.1711355 -36.12562504,-115.1711444 -36.12562527,-115.1711538 -36.12562549,-115.1711632 -36.1256257,-115.1711721 -36.12562593,-115.1711816 -36.12562616,-115.171191 -36.12562637,-115.1711999 -36.12562659,-115.1712093 -36.12562682,-115.1712188 -36.12562703,-115.1712276 -36.12562726,-115.1712371 -36.12562748,-115.1712465 -36.12562769,-115.1712554 -36.12562792,-115.1712648 -36.12562814,-115.1712743 -36.12562836,-115.1712832 -36.12562858,-115.1712926 -36.12562881,-115.171302 -36.12562902,-115.1713109 -36.12562924,-115.1713203 -36.12562947,-115.1713298 -36.12562968,-115.1713387 -36.12562991,-115.1713481 -36.12563013,-115.1713575 -36.12563034,-115.1713664 -36.12563057,-115.1713759 -36.1256308,-115.1713853 -36.12563101,-115.1713942 -36.12563123,-115.1714036 -36.12563146,-115.1714131 -36.12563167,-115.1714219 -36.1256319,-115.1714314 -36.12563212,-115.1714408 -36.12563233,-115.1714497 -36.12563256,-115.1714591 -36.12563278,-115.1714686 -36.125633,-115.1714775 -36.12563322,-115.1714869 -36.12563345,-115.1714963 -36.12563366,-115.1715052 -36.12563388,-115.1715147 -36.12563411,-115.1715241 -36.12563432,-115.171533 -36.12563455,-115.1715424 -36.12563477,-115.1715519 -36.12563498,-115.1715607 -36.12563521,-115.1715702 -36.12563544,-115.1715796 -36.12563565,-115.1715885 -36.12563587,-115.1715979 -36.1256361,-115.1716074 -36.12563631,-115.1716163 -36.12563654,-115.1716257 -36.12563676,-115.1716351 -36.12563697,-115.171644 -36.1256372,-115.1716535 -36.12563742,-115.1716629 -36.12563764,-115.1716718 -36.12563786,-115.1716812 -36.12563809,-115.1716907 -36.1256383,-115.1716995 -36.12563852,-115.171709 -36.12563875,-115.1717184 -36.12563896,-115.1717273 -36.12563919,-115.1717367 -36.12563941,-115.1717462 -36.12563963,-115.1717551 -36.12563985,-115.1717645 -36.12564008,-115.1717739 -36.12564029,-115.1717828 -36.12564051,-115.1717922 -36.12564074,-115.1718017 -36.12564095,-115.1718106 -36.12564118,-115.17182 -36.1256414,-115.1718294 -36.12564161,-115.1718383 -36.12564184,-115.1718478 -36.12564206,-115.1718572 -36.12564228,-115.1718661 -36.1256425,-115.1718755 -36.12564273,-115.171885 -36.12564294,-115.1718938 -36.12564316,-115.1719033 -36.12564339,-115.1719127 -36.1256436,-115.1719216 -36.12564383,-115.171931 -36.12564405,-115.1719405 -36.12564427,-115.1719494 -36.12564449,-115.1719588 -36.12564472,-115.1719682 -36.12564493,-115.1719771 -36.12564515,-115.1719866 -36.12564538,-115.171996 -36.12564559,-115.1720049 -36.12564582,-115.1720143 -36.12564604,-115.1720238 -36.12564625,-115.1720326 -36.12564647,-115.1720421 -36.1256467,-115.1720515 -36.12564691,-115.1720604 -36.12564713,-115.1720698 -36.12564735,-115.1720793 -36.12564756,-115.1720882 -36.12564778,-115.1720976 -36.125648,-115.172107 -36.12564821,-115.1721159 -36.12564844,-115.1721254 -36.12564866,-115.1721348 -36.12564887,-115.1721437 -36.12564909,-115.1721531 -36.12564931,-115.1721626 -36.12564952,-115.1721714 -36.12564974,-115.1721809 -36.12564997,-115.1721903 -36.12565018,-115.1721992 -36.1256504,-115.1722086 -36.12565062,-115.1722181 -36.12565083,-115.172227 -36.12565105,-115.1722364 -36.12565128,-115.1722458 -36.12565149,-115.1722547 -36.12565171,-115.1722642 -36.12565193,-115.1722736 -36.12565214,-115.1722825 -36.12565236,-115.1722919 -36.12565258,-115.1723013 -36.12565279,-115.1723102 -36.12565302,-115.1723197 -36.12565324,-115.1723291 -36.12565345,-115.172338 -36.12565367,-115.1723474 -36.12565389,-115.1723569 -36.1256541,-115.1723657 -36.12565433,-115.1723752 -36.12565455,-115.1723846 -36.12565476,-115.1723935 -36.12565498,-115.1724029 -36.1256552,-115.1724124 -36.12565541,-115.1724213 -36.12565563,-115.1724307 -36.12565586,-115.1724401 -36.12565607,-115.172449 -36.12565629,-115.1724585 -36.12565651,-115.1724679 -36.12565672,-115.1724768 -36.12565694,-115.1724862 -36.12565717,-115.1724957 -36.12565737,-115.1725045 -36.1256576,-115.172514 -36.12565782,-115.1725234 -36.12565803,-115.1725323 -36.12565825,-115.1725417 -36.12565847,-115.1725512 -36.12565868,-115.1725601 -36.12565891,-115.1725695 -36.12565913,-115.1725789 -36.12565934,-115.1725878 -36.12565956,-115.1725973 -36.12565978,-115.1726067 -36.12565999,-115.1726156 -36.12566021,-115.172625 -36.12566044,-115.1726345 -36.12566065,-115.1726433 -36.12566087,-115.1726528 -36.12566109,-115.1726622 -36.1256613,-115.1726711 -36.12566152,-115.1726805 -36.12566175,-115.17269 -36.12566195,-115.1726989 -36.12566218,-115.1727083 -36.1256624,-115.1727177 -36.12566261,-115.1727266 -36.12566283,-115.1727361 -36.12566305,-115.1727455 -36.12566326,-115.1727544 -36.12566349,-115.1727638 -36.12566371,-115.1727733 -36.12566392,-115.1727821 -36.12566414,-115.1727916 -36.12566436,-115.172801 -36.12566457,-115.1728099 -36.12566479,-115.1728193 -36.12566502,-115.1728288 -36.12566523,-115.1728377 -36.12566545,-115.1728471 -36.12566567,-115.1728565 -36.12566588,-115.1728654 -36.1256661,-115.1728749 -36.12566633,-115.1728843 -36.12566654,-115.1728932 -36.12566676,-115.1729026 -36.12566698,-115.172912 -36.12566719,-115.1729209 -36.12566741,-115.1729304 -36.12566763,-115.1729398 -36.12566784,-115.1729487 -36.12566807,-115.1729581 -36.12566829,-115.1729676 -36.1256685,-115.1729765 -36.12566872,-115.1729859 -36.12566894,-115.1729953 -36.12566915,-115.1730042 -36.12566938,-115.1730136 -36.1256696,-115.1730231 -36.12566981,-115.173032 -36.12567003,-115.1730414 -36.12567025,-115.1730508 -36.12567046,-115.1730597 -36.12567068,-115.1730692 -36.12567091,-115.1730786 -36.12567112,-115.1730875 -36.12567134,-115.1730969 -36.12567156,-115.1731064 -36.12567177,-115.1731152 -36.12567199,-115.1731247 -36.12567222,-115.1731341 -36.12567244,-115.173143 -36.12567267,-115.1731524 -36.1256729,-115.1731619 -36.12567312,-115.1731708 -36.12567335,-115.1731802 -36.12567358,-115.1731896 -36.12567379,-115.1731985 -36.12567402,-115.173208 -36.12567425,-115.1732174 -36.12567447,-115.1732263 -36.1256747,-115.1732357 -36.12567493,-115.1732452 -36.12567515,-115.173254 -36.12567538,-115.1732635 -36.12567561,-115.1732729 -36.12567582,-115.1732818 -36.12567614,-115.1732912 -36.12567675,-115.1733006 -36.12567732,-115.1733095 -36.12567793,-115.1733189 -36.12567854,-115.1733283 -36.12567911,-115.1733372 -36.12567972,-115.1733466 -36.12568032,-115.173356 -36.12568089,-115.1733649 -36.1256815,-115.1733743 -36.12568211,-115.1733837 -36.12568268,-115.1733926 -36.12568329,-115.173402 -36.1256839,-115.1734114 -36.12568447,-115.1734202 -36.12568507,-115.1734296 -36.12568568,-115.1734391 -36.12568625,-115.1734479 -36.12568686,-115.1734573 -36.12568747,-115.1734667 -36.12568804,-115.1734756 -36.12568865,-115.173485 -36.12568925,-115.1734944 -36.12568982,-115.1735033 -36.12569043,-115.1735127 -36.12569104,-115.1735221 -36.12569161,-115.173531 -36.12569222,-115.1735404 -36.12569283,-115.1735498 -36.1256934,-115.1735587 -36.125694,-115.1735681 -36.12569461,-115.1735775 -36.12569518,-115.1735863 -36.12569579,-115.1735957 -36.1256964,-115.1736052 -36.12569697,-115.173614 -36.12569758,-115.1736234 -36.12569818,-115.1736328 -36.12569875,-115.1736417 -36.12569936,-115.1736511 -36.12569997,-115.1736605 -36.12570054,-115.1736694 -36.12570115,-115.1736788 -36.12570176,-115.1736882 -36.12570254,-115.173697 -36.12570356,-115.1737064 -36.12570457,-115.1737158 -36.12570552,-115.1737246 -36.12570653,-115.1737339 -36.12570754,-115.1737433 -36.12570849,-115.1737521 -36.1257095,-115.1737615 -36.12571051,-115.1737708 -36.12571146,-115.1737796 -36.12571247,-115.173789 -36.12571343,-115.1737978 -36.12571444,-115.1738072 -36.12571545,-115.1738165 -36.1257164,-115.1738253 -36.12571741,-115.1738347 -36.12571842,-115.173844 -36.12571937,-115.1738529 -36.12572038,-115.1738622 -36.12572139,-115.1738716 -36.12572235,-115.1738804 -36.12572336,-115.1738897 -36.12572437,-115.1738991 -36.12572532,-115.1739079 -36.12572633,-115.1739173 -36.12572734,-115.1739266 -36.12572829,-115.1739354 -36.1257293,-115.1739448 -36.12573031,-115.1739542 -36.12573127,-115.173963 -36.12573228,-115.1739723 -36.12573329,-115.1739817 -36.12573424,-115.1739905 -36.12573525,-115.1739999 -36.12573626,-115.1740092 -36.12573721,-115.174018 -36.12573822,-115.1740274 -36.12573923,-115.1740367 -36.12574018,-115.1740455 -36.1257412,-115.1740549 -36.12574221,-115.1740643 -36.12574316,-115.1740731 -36.12574417,-115.1740824 -36.12574518,-115.1740918 -36.12574613,-115.1741006 -36.12574714,-115.17411 -36.12574815,-115.1741193 -36.1257491,-115.1741281 -36.12575012,-115.1741375 -36.12575113,-115.1741469 -36.12575208,-115.1741557 -36.12575309,-115.174165 -36.1257541,-115.1741744 -36.12575505,-115.1741832 -36.12575606,-115.1741925 -36.12575707,-115.1742019 -36.12575802,-115.1742107 -36.12575904,-115.1742201 -36.12576005,-115.1742294 -36.125761,-115.1742382 -36.12576201,-115.1742476 -36.12576302,-115.174257 -36.12576397,-115.1742658 -36.12576498,-115.1742751 -36.12576599,-115.1742845 -36.12576694,-115.1742933 -36.12576795,-115.1743027 -36.12576897,-115.174312 -36.12576992,-115.1743208 -36.12577093,-115.1743302 -36.12577194,-115.1743395 -36.12577289,-115.1743484 -36.1257739,-115.1743577 -36.12577491,-115.1743671 -36.12577586,-115.1743759 -36.12577687,-115.1743852 -36.12577789,-115.1743946 -36.12577884,-115.1744034 -36.12577985,-115.1744128 -36.12578086,-115.1744221 -36.12578181,-115.1744309 -36.12578282,-115.1744403 -36.12578383,-115.1744497 -36.12578478,-115.1744585 -36.12578579,-115.1744678 -36.1257868,-115.1744772 -36.12578775,-115.174486 -36.12578876,-115.1744954 -36.12578976,-115.1745047 -36.12579071,-115.1745135 -36.12579172,-115.1745229 -36.12579272,-115.1745323 -36.12579367,-115.1745411 -36.12579468,-115.1745504 -36.12579568,-115.1745598 -36.12579663,-115.1745686 -36.12579764,-115.174578 -36.12579864,-115.1745873 -36.12579959,-115.1745961 -36.12580059,-115.1746055 -36.1258016,-115.1746148 -36.12580255,-115.1746237 -36.12580355,-115.174633 -36.12580456,-115.1746424 -36.12580551,-115.1746512 -36.12580651,-115.1746605 -36.12580752,-115.1746699 -36.12580846,-115.1746787 -36.12580947,-115.1746881 -36.12581048,-115.1746974 -36.12581142,-115.1747062 -36.12581243,-115.1747156 -36.12581344,-115.174725 -36.12581438,-115.1747338 -36.12581539,-115.1747431 -36.12581639,-115.1747525 -36.12581734,-115.1747613 -36.12581835,-115.1747707 -36.12581935,-115.17478 -36.1258203,-115.1747888 -36.12582131,-115.1747982 -36.12582231,-115.1748076 -36.12582326,-115.1748164 -36.12582427,-115.1748257 -36.12582527,-115.1748351 -36.12582622,-115.1748439 -36.12582722,-115.1748533 -36.12582823,-115.1748626 -36.12582918,-115.1748714 -36.12583018,-115.1748808 -36.12583119,-115.1748901 -36.12583214,-115.174899 -36.12583314,-115.1749083 -36.12583415,-115.1749177 -36.12583509,-115.1749265 -36.1258361,-115.1749359 -36.12583711,-115.1749452 -36.12583805,-115.174954 -36.12583906,-115.1749634 -36.12584007,-115.1749727 -36.12584101,-115.1749816 -36.12584202,-115.1749909 -36.12584302,-115.1750003 -36.12584397,-115.1750091 -36.12584498,-115.1750184 -36.12584598,-115.1750278 -36.12584693,-115.1750366 -36.12584794,-115.175046 -36.12584894,-115.1750553 -36.12584989,-115.1750641 -36.1258509,-115.1750735 -36.1258519,-115.1750829 -36.12585285,-115.1750917 -36.12585385,-115.175101 -36.12585486,-115.1751104 -36.12585581,-115.1751192 -36.12585681,-115.1751286 -36.12585782,-115.1751379 -36.12585877,-115.1751467 -36.12585977,-115.1751561 -36.12586078,-115.1751655 -36.12586172,-115.1751743 -36.12586273,-115.1751836 -36.12586374,-115.175193 -36.12586468,-115.1752018 -36.12586569,-115.1752112 -36.1258667,-115.1752205 -36.12586764,-115.1752293 -36.12586865,-115.1752387 -36.12586965,-115.175248 -36.1258706,-115.1752569 -36.12587161,-115.1752662 -36.12587261,-115.1752756 -36.12587356,-115.1752844 -36.12587457,-115.1752937 -36.12587557,-115.1753031 -36.12587652,-115.1753119 -36.12587753,-115.1753213 -36.12587853,-115.1753306 -36.12587948,-115.1753394 -36.12588048,-115.1753488 -36.12588149,-115.1753582 -36.12588244,-115.175367 -36.12588344,-115.1753763 -36.12588445,-115.1753857 -36.1258854,-115.1753945 -36.1258864,-115.1754039 -36.12588741,-115.1754132 -36.12588835,-115.175422 -36.12588936,-115.1754314 -36.12589037,-115.1754408 -36.12589131,-115.1754496 -36.12589232,-115.1754589 -36.12589333,-115.1754683 -36.12589427,-115.1754771 -36.12589528,-115.1754865 -36.12589628,-115.1754958 -36.12589723,-115.1755046 -36.12589824,-115.175514 -36.12589924,-115.1755234 -36.12590019,-115.1755322 -36.1259012,-115.1755415 -36.1259022,-115.1755509 -36.12590315,-115.1755597 -36.12590416,-115.1755691 -36.12590516,-115.1755784 -36.12590611,-115.1755872 -36.12590711,-115.1755966 -36.12590812,-115.1756059 -36.12590907,-115.1756148 -36.12591007,-115.1756241 -36.12591108,-115.1756335 -36.12591203,-115.1756423 -36.12591303,-115.1756516 -36.12591404,-115.175661 -36.12591499,-115.1756698 -36.12591599,-115.1756792 -36.125917,-115.1756885 -36.12591794,-115.1756973 -36.12591895,-115.1757067 -36.12591996,-115.1757161 -36.1259209,-115.1757249 -36.12592191,-115.1757342 -36.12592291,-115.1757436 -36.12592386,-115.1757524 -36.12592487,-115.1757618 -36.12592587,-115.1757711 -36.12592682,-115.1757799 -36.12592783,-115.1757893 -36.12592883,-115.1757987 -36.12592978,-115.1758075 -36.12593079,-115.1758168 -36.12593179,-115.1758262 -36.12593274,-115.175835 -36.12593374,-115.1758444 -36.12593475,-115.1758537 -36.1259357,-115.1758625 -36.1259367,-115.1758719 -36.12593771,-115.1758813 -36.12593866,-115.1758901 -36.12593966,-115.1758994 -36.12594067,-115.1759088 -36.12594162,-115.1759176 -36.12594262,-115.175927 -36.12594363,-115.1759363 -36.12594457,-115.1759451 -36.12594558,-115.1759545 -36.12594659,-115.1759638 -36.12594753,-115.1759727 -36.12594854,-115.175982 -36.12594955,-115.1759914 -36.12595049,-115.1760002 -36.1259515,-115.1760095 -36.1259525,-115.1760189 -36.12595345,-115.1760277 -36.12595446,-115.1760371 -36.12595546,-115.1760464 -36.12595641,-115.1760552 -36.12595742,-115.1760646 -36.12595842,-115.176074 -36.12595937,-115.1760828 -36.12596037,-115.1760921 -36.12596138,-115.1761015 -36.12596233,-115.1761103 -36.12596333,-115.1761197 -36.12596434,-115.176129 -36.12596529,-115.1761378 -36.12596629,-115.1761472 -36.1259673,-115.1761566 -36.12596825,-115.1761654 -36.12596925,-115.1761747 -36.12597026,-115.1761841 -36.1259712,-115.1761929 -36.12597221,-115.1762023 -36.12597322,-115.1762116 -36.12597416,-115.1762204 -36.12597517,-115.1762298 -36.12597618,-115.1762392 -36.12597712,-115.176248 -36.12597813,-115.1762573 -36.12597913,-115.1762667 -36.12598008,-115.1762755 -36.12598109,-115.1762849 -36.12598209,-115.1762942 -36.12598304,-115.176303 -36.12598405,-115.1763124 -36.12598505,-115.1763217 -36.125986,-115.1763306 -36.125987,-115.1763399 -36.12598801,-115.1763493 -36.12598896,-115.1763581 -36.12598996,-115.1763674 -36.12599097,-115.1763768 -36.12599192,-115.1763856 -36.12599292,-115.176395 -36.12599393,-115.1764043 -36.12599491,-115.1764131 -36.12599596,-115.1764225 -36.125997,-115.1764318 -36.12599799,-115.1764407 -36.12599903,-115.17645 -36.12600008,-115.1764594 -36.12600106,-115.1764682 -36.12600211,-115.1764775 -36.12600316,-115.1764869 -36.12600414,-115.1764957 -36.12600519,-115.176505 -36.12600623,-115.1765144 -36.12600722,-115.1765232 -36.12600826,-115.1765325 -36.12600931,-115.1765419 -36.12601029,-115.1765507 -36.12601136,-115.17656 -36.12601247,-115.1765694 -36.12601351,-115.1765782 -36.12601461,-115.1765875 -36.12601572,-115.1765969 -36.12601676,-115.1766057 -36.12601787,-115.176615 -36.12601898,-115.1766243 -36.12602002,-115.1766331 -36.12602112,-115.1766425 -36.12602223,-115.1766518 -36.12602327,-115.1766606 -36.12602438,-115.17667 -36.12602548,-115.1766793 -36.12602653,-115.1766881 -36.12602763,-115.1766974 -36.12602874,-115.1767068 -36.12602978,-115.1767156 -36.12603089,-115.1767249 -36.12603199,-115.1767343 -36.12603303,-115.1767431 -36.12603414,-115.1767524 -36.12603525,-115.1767618 -36.12603629,-115.1767705 -36.12603739,-115.1767799 -36.1260385,-115.1767892 -36.12603954,-115.176798 -36.12604065,-115.1768074 -36.12604176,-115.1768167 -36.1260428,-115.1768255 -36.1260439,-115.1768348 -36.12604501,-115.1768442 -36.12604605,-115.176853 -36.12604716,-115.1768623 -36.12604826,-115.1768717 -36.1260493,-115.1768805 -36.12605041,-115.1768898 -36.12605152,-115.1768992 -36.12605256,-115.1769079 -36.12605367,-115.1769173 -36.12605477,-115.1769266 -36.12605581,-115.1769354 -36.12605692,-115.1769448 -36.12605803,-115.1769541 -36.12605907,-115.1769629 -36.12606017,-115.1769722 -36.12606128,-115.1769816 -36.12606232,-115.1769904 -36.12606343,-115.1769997 -36.12606453,-115.1770091 -36.12606558,-115.1770179 -36.12606668,-115.1770272 -36.12606779,-115.1770366 -36.12606883,-115.1770453 -36.12606994,-115.1770547 -36.12607104,-115.177064 -36.12607208,-115.1770728 -36.12607319,-115.1770822 -36.1260743,-115.1770915 -36.12607534,-115.1771003 -36.12607645,-115.1771096 -36.12607755,-115.177119 -36.12607859,-115.1771278 -36.1260797,-115.1771371 -36.12608081,-115.1771465 -36.12608185,-115.1771553 -36.12608295,-115.1771646 -36.12608382,-115.177174 -36.12608463,-115.1771828 -36.12608549,-115.1771922 -36.12608635,-115.1772016 -36.12608716,-115.1772104 -36.12608802,-115.1772198 -36.12608888,-115.1772292 -36.12608969,-115.177238 -36.12609055,-115.1772474 -36.12609141,-115.1772568 -36.12609222,-115.1772656 -36.12609308,-115.177275 -36.12609394,-115.1772844 -36.12609475,-115.1772932 -36.12609561,-115.1773026 -36.12609647,-115.177312 -36.12609728,-115.1773208 -36.12609814,-115.1773302 -36.126099,-115.1773396 -36.12609981,-115.1773484 -36.12610066,-115.1773578 -36.12610152,-115.1773672 -36.12610233,-115.177376 -36.12610319,-115.1773854 -36.12610405,-115.1773948 -36.12610486,-115.1774036 -36.12610572,-115.177413 -36.12610658,-115.1774224 -36.12610739,-115.1774312 -36.12610825,-115.1774406 -36.12610911,-115.1774499 -36.12610992,-115.1774588 -36.12611078,-115.1774682 -36.12611164,-115.1774775 -36.12611245,-115.1774864 -36.12611331,-115.1774958 -36.12611417,-115.1775051 -36.12611498,-115.177514 -36.12611584,-115.1775234 -36.1261167,-115.1775327 -36.12611751,-115.1775416 -36.12611837,-115.1775509 -36.12611923,-115.1775603 -36.12612003,-115.1775692 -36.12612089,-115.1775785 -36.12612175,-115.1775879 -36.12612256,-115.1775968 -36.12612342,-115.1776061 -36.12612428,-115.1776155 -36.12612509,-115.1776244 -36.12612595,-115.1776337 -36.12612681,-115.1776431 -36.12612762,-115.1776519 -36.12612848,-115.1776613 -36.1261293,-115.1776707 -36.12613002,-115.1776796 -36.12613078,-115.177689 -36.12613154,-115.1776984 -36.12613226,-115.1777072 -36.12613302,-115.1777166 -36.12613378,-115.177726 -36.1261345,-115.1777348 -36.12613526,-115.1777442 -36.12613603,-115.1777536 -36.12613674,-115.1777625 -36.12613751,-115.1777719 -36.12613827,-115.1777813 -36.12613898,-115.1777901 -36.12613975,-115.1777995 -36.12614051,-115.1778089 -36.12614123,-115.1778177 -36.12614199,-115.1778271 -36.12614275,-115.1778365 -36.12614347,-115.1778454 -36.12614423,-115.1778548 -36.12614499,-115.1778642 -36.12614571,-115.177873 -36.12614647,-115.1778824 -36.12614723,-115.1778918 -36.12614795,-115.1779006 -36.12614871,-115.17791 -36.12614947,-115.1779194 -36.12615019,-115.1779283 -36.12615095,-115.1779377 -36.12615172,-115.1779471 -36.12615243,-115.1779559 -36.1261532,-115.1779653 -36.12615396,-115.1779747 -36.12615468,-115.1779835 -36.12615544,-115.1779929 -36.1261562,-115.1780023 -36.12615692,-115.1780112 -36.12615768,-115.1780206 -36.12615844,-115.17803 -36.12615916,-115.1780388 -36.12615992,-115.1780482 -36.12616068,-115.1780576 -36.1261614,-115.1780664 -36.12616216,-115.1780758 -36.12616292,-115.1780852 -36.12616364,-115.1780941 -36.1261644,-115.1781035 -36.12616517,-115.1781129 -36.12616588,-115.1781217 -36.12616664,-115.1781311 -36.12616741,-115.1781405 -36.12616812,-115.1781493 -36.12616889,-115.1781587 -36.12616965,-115.1781681 -36.12617037,-115.178177 -36.12617113,-115.1781864 -36.12617189,-115.1781958 -36.12617261,-115.1782046 -36.12617337,-115.178214 -36.12617413,-115.1782234 -36.12617485,-115.1782322 -36.12617561,-115.1782416 -36.12617637,-115.178251 -36.12617709,-115.1782599 -36.12617785,-115.1782693 -36.12617861,-115.1782787 -36.12617933,-115.1782875 -36.12618009,-115.1782969 -36.12618086,-115.1783063 -36.12618157,-115.1783151 -36.12618233,-115.1783245 -36.1261831,-115.1783339 -36.12618381,-115.1783428 -36.12618458,-115.1783522 -36.12618534,-115.1783616 -36.12618606,-115.1783704 -36.12618682,-115.1783798 -36.12618758,-115.1783892 -36.1261883,-115.178398 -36.12618906,-115.1784074 -36.12618982,-115.1784168 -36.12619054,-115.1784257 -36.1261913,-115.1784351 -36.12619206,-115.1784445 -36.12619278,-115.1784533 -36.12619354,-115.1784627 -36.1261943,-115.1784721 -36.12619502,-115.1784809 -36.12619578,-115.1784903 -36.12619629,-115.1784997 -36.12619668,-115.1785086 -36.12619709,-115.1785181 -36.1261975,-115.1785275 -36.12619789,-115.1785364 -36.1261983,-115.1785458 -36.12619871,-115.1785552 -36.1261991,-115.1785641 -36.12619951,-115.1785735 -36.12619992,-115.1785829 -36.12620031,-115.1785918 -36.12620072,-115.1786012 -36.12620113,-115.1786107 -36.12620152,-115.1786195 -36.12620193,-115.178629 -36.12620234,-115.1786384 -36.12620273,-115.1786473 -36.12620314,-115.1786567 -36.12620355,-115.1786661 -36.12620394,-115.178675 -36.12620435,-115.1786844 -36.12620476,-115.1786939 -36.12620515,-115.1787027 -36.12620556,-115.1787122 -36.12620597,-115.1787216 -36.12620636,-115.1787305 -36.12620677,-115.1787399 -36.12620718,-115.1787493 -36.12620757,-115.1787582 -36.12620798,-115.1787676 -36.12620839,-115.1787771 -36.12620878,-115.1787859 -36.12620919,-115.1787954 -36.1262096,-115.1788048 -36.12620999,-115.1788137 -36.1262104,-115.1788231 -36.12621081,-115.1788325 -36.1262112,-115.1788414 -36.12621161,-115.1788508 -36.12621202,-115.1788603 -36.12621241,-115.1788691 -36.12621282,-115.1788786 -36.12621323,-115.178888 -36.12621362,-115.1788969 -36.12621403,-115.1789063 -36.12621444,-115.1789157 -36.12621482,-115.1789246 -36.12621524,-115.178934 -36.12621565,-115.1789434 -36.12621603,-115.1789523 -36.12621645,-115.1789617 -36.12621686,-115.1789712 -36.12621724,-115.1789801 -36.12621766,-115.1789895 -36.12621807,-115.1789989 -36.12621845,-115.1790078 -36.12621886,-115.1790172 -36.12621928,-115.1790266 -36.12621966,-115.1790355 -36.12622007,-115.1790449 -36.12622049,-115.1790544 -36.12622087,-115.1790632 -36.12622128,-115.1790727 -36.1262217,-115.1790821 -36.12622208,-115.179091 -36.12622249,-115.1791004 -36.1262229,-115.1791098 -36.12622329,-115.1791187 -36.1262237,-115.1791281 -36.12622411,-115.1791376 -36.1262245,-115.1791464 -36.12622491,-115.1791559 -36.12622532,-115.1791653 -36.12622574,-115.1791747 -36.12622612,-115.1791836 -36.12622653,-115.179193 -36.12622694,-115.1792025 -36.12622733,-115.1792113 -36.12622774,-115.1792208 -36.12622815,-115.1792302 -36.12622854,-115.1792391 -36.12622895,-115.1792485 -36.12622936,-115.1792579 -36.12622975,-115.1792668 -36.12623016,-115.1792762 -36.12623057,-115.1792856 -36.12623096,-115.1792945 -36.12623137,-115.179304 -36.12623178,-115.1793134 -36.12623217,-115.1793223 -36.12623258,-115.1793317 -36.12623299,-115.1793411 -36.12623338,-115.17935 -36.12623379,-115.1793594 -36.1262342,-115.1793688 -36.12623459,-115.1793777 -36.126235,-115.1793871 -36.12623541,-115.1793966 -36.1262358,-115.1794054 -36.12623621,-115.1794149 -36.12623662,-115.1794243 -36.12623701,-115.1794332 -36.12623742,-115.1794426 -36.12623783,-115.179452 -36.12623822,-115.1794609 -36.12623863,-115.1794703 -36.12623904,-115.1794798 -36.12623943,-115.1794886 -36.12623984,-115.1794981 -36.12624025,-115.1795075 -36.12624064,-115.1795164 -36.12624105,-115.1795258 -36.12624146,-115.1795352 -36.12624185,-115.1795441 -36.12624226,-115.1795535 -36.12624267,-115.179563 -36.12624306,-115.1795718 -36.12624347,-115.1795813 -36.12624388,-115.1795907 -36.12624427,-115.1795996 -36.12624468,-115.179609 -36.12624509,-115.1796184 -36.12624548,-115.1796273 -36.12624589,-115.1796367 -36.1262463,-115.1796462 -36.12624669,-115.179655 -36.1262471,-115.1796645 -36.12624751,-115.1796739 -36.12624789,-115.1796828 -36.12624831,-115.1796922 -36.12624872,-115.1797016 -36.1262491,-115.1797105 -36.12624952,-115.1797199 -36.12624993,-115.1797293 -36.12625031,-115.1797382 -36.12625072,-115.1797477 -36.12625114,-115.1797571 -36.12625152,-115.179766 -36.12625193,-115.1797754 -36.12625235,-115.1797848 -36.12625273,-115.1797937 -36.12625314,-115.1798031 -36.12625356,-115.1798125 -36.12625394,-115.1798214 -36.12625435,-115.1798308 -36.12625476,-115.1798403 -36.12625515,-115.1798491 -36.12625556,-115.1798586 -36.12625597,-115.179868 -36.12625636,-115.1798769 -36.12625677,-115.1798863 -36.12625718,-115.1798957 -36.12625757,-115.1799046 -36.12625798,-115.179914 -36.12625839,-115.1799235 -36.12625878,-115.1799323 -36.12625919,-115.1799418 -36.1262596,-115.1799512 -36.12625999,-115.1799601 -36.1262604,-115.1799695 -36.12626081,-115.1799789 -36.1262612,-115.1799878 -36.12626161,-115.1799972 -36.12626202,-115.1800067 -36.12626241,-115.1800155 -36.12626282,-115.180025 -36.12626323,-115.1800344 -36.12626362,-115.1800433 -36.12626403,-115.1800527 -36.12626448,-115.1800621 -36.1262649,-115.180071 -36.12626534,-115.1800804 -36.12626579,-115.1800898 -36.12626621,-115.1800987 -36.12626665,-115.1801081 -36.1262671,-115.1801176 -36.12626752,-115.1801264 -36.12626796,-115.1801359 -36.12626841,-115.1801453 -36.12626883,-115.1801542 -36.12626927,-115.1801636 -36.12626972,-115.180173 -36.12627014,-115.1801819 -36.12627058,-115.1801913 -36.12627103,-115.1802007 -36.12627145,-115.1802096 -36.12627189,-115.180219 -36.12627234,-115.1802285 -36.12627276,-115.1802373 -36.1262732,-115.1802468 -36.12627365,-115.1802562 -36.12627407,-115.1802651 -36.12627451,-115.1802745 -36.12627496,-115.1802839 -36.12627538,-115.1802928 -36.12627583,-115.1803022 -36.12627627,-115.1803116 -36.12627669,-115.1803205 -36.12627714,-115.1803299 -36.12627758,-115.1803394 -36.126278,-115.1803482 -36.12627845,-115.1803577 -36.12627889,-115.1803671 -36.12627931,-115.180376 -36.12627976,-115.1803854 -36.1262802,-115.1803948 -36.12628062,-115.1804037 -36.12628107,-115.1804131 -36.12628151,-115.1804225 -36.12628193,-115.1804314 -36.12628238,-115.1804408 -36.12628282,-115.1804503 -36.12628324,-115.1804591 -36.12628369,-115.1804686 -36.12628413,-115.180478 -36.12628455,-115.1804869 -36.126285,-115.1804963 -36.12628544,-115.1805057 -36.12628586,-115.1805146 -36.12628631,-115.180524 -36.12628675,-115.1805334 -36.12628717,-115.1805423 -36.12628762,-115.1805517 -36.12628806,-115.1805612 -36.12628848,-115.18057 -36.12628893,-115.1805795 -36.12628937,-115.1805889 -36.12628979,-115.1805978 -36.12629024,-115.1806072 -36.12629068,-115.1806166 -36.1262911,-115.1806255 -36.12629155,-115.1806349 -36.12629199,-115.1806443 -36.12629241,-115.1806532 -36.12629286,-115.1806626 -36.1262933,-115.1806721 -36.12629372,-115.1806809 -36.12629417,-115.1806904 -36.12629461,-115.1806998 -36.12629503,-115.1807086 -36.12629548,-115.1807181 -36.12629592,-115.1807275 -36.12629634,-115.1807364 -36.12629679,-115.1807458 -36.12629724,-115.1807552 -36.12629765,-115.1807641 -36.1262981,-115.1807735 -36.12629855,-115.1807829 -36.12629896,-115.1807918 -36.12629941,-115.1808012 -36.12629986,-115.1808107 -36.12630027,-115.1808195 -36.12630072,-115.180829 -36.12630117,-115.1808384 -36.12630159,-115.1808473 -36.12630203,-115.1808567 -36.12630248,-115.1808661 -36.1263029,-115.180875 -36.12630334,-115.1808844 -36.12630379,-115.1808938 -36.12630421,-115.1809027 -36.12630465,-115.1809121 -36.1263051,-115.1809216 -36.12630552,-115.1809304 -36.12630596,-115.1809399 -36.12630641,-115.1809493 -36.12630683,-115.1809582 -36.12630727,-115.1809676 -36.12630772,-115.180977 -36.12630734,-115.1809858 -36.12630519,-115.1809948 -36.12630304,-115.1810039 -36.12630101,-115.1810124 -36.12629886,-115.1810215 -36.12629671,-115.1810306 -36.12629468,-115.1810391 -36.12629253,-115.1810481 -36.12629038,-115.1810572 -36.12628835,-115.1810657 -36.1262862,-115.1810748 -36.12628405,-115.1810839 -36.12628202,-115.1810924 -36.12627987,-115.1811014 -36.12627772,-115.1811105 -36.12627569,-115.181119 -36.12627354,-115.1811281 -36.12627139,-115.1811372 -36.1262686,-115.1811452 -36.12626389,-115.1811527 -36.12625917,-115.1811601 -36.12625474,-115.1811671 -36.12625002,-115.1811745 -36.12624531,-115.181182 -36.12624087,-115.181189 -36.12623616,-115.1811964 -36.12623145,-115.1812039 -36.12622701,-115.1812109 -36.1262223,-115.1812183 -36.12621758,-115.1812258 -36.12621315,-115.1812328 -36.12620657,-115.1812376 -36.12619993,-115.1812423 -36.12619368,-115.1812467 -36.12618704,-115.1812514 -36.1261804,-115.1812561 -36.12617415,-115.1812605 -36.12616751,-115.1812653 -36.12616088,-115.18127 -36.12615418,-115.1812729 -36.12614667,-115.1812748 -36.12613917,-115.1812767 -36.1261321,-115.1812784 -36.12612459,-115.1812803 -36.12611708,-115.1812821 -36.12611001,-115.1812839 -36.1261025,-115.1812857 -36.12609499,-115.1812876 -36.12608792,-115.1812894 -36.12608041,-115.1812912 -36.1260729,-115.1812931 -36.12606584,-115.1812948 -36.12605833,-115.1812967 -36.12605078,-115.1812979 -36.12604357,-115.1812975 -36.12603592,-115.1812972 -36.12602827,-115.1812968 -36.12602106,-115.1812965 -36.12601341,-115.1812961 -36.12600575,-115.1812957 -36.12599855,-115.1812954 -36.1259909,-115.181295 -36.12598324,-115.1812947 -36.12597604,-115.1812943 -36.12596839,-115.181294 -36.12596073,-115.1812936 -36.12595353,-115.1812932 -36.12594587,-115.1812929 -36.12593822,-115.1812925 -36.12593102,-115.1812922 -36.12592336,-115.1812918 -36.12591571,-115.1812914 -36.12590851,-115.1812911 -36.12590085,-115.1812907 -36.1258932,-115.1812904 -36.125886,-115.18129 -36.12587834,-115.1812896 -36.12587069,-115.1812893 -36.12586348,-115.1812889 -36.12585583,-115.1812886 -36.12584818,-115.1812882 -36.12584097,-115.1812879 -36.12583332,-115.1812875 -36.12582567,-115.1812871 -36.12581846,-115.1812868 -36.12581081,-115.1812864 -36.12580315,-115.181286 -36.12579595,-115.1812857 -36.1257883,-115.1812853 -36.12578064,-115.181285 -36.12577344,-115.1812846 -36.12576579,-115.1812843 -36.12575813,-115.1812839 -36.12575093,-115.1812835 -36.12574327,-115.1812832 -36.12573562,-115.1812828 -36.12572842,-115.1812825 -36.12572076,-115.1812821 -36.12571311,-115.1812817 -36.12570591,-115.1812814 -36.12569825,-115.181281 -36.1256906,-115.1812807 -36.1256834,-115.1812803 -36.12567574,-115.1812799 -36.12566809,-115.1812796 -36.12566088,-115.1812792 -36.12565327,-115.1812784 -36.12564574,-115.1812767 -36.12563864,-115.1812751 -36.1256311,-115.1812735 -36.12562357,-115.1812718 -36.12561647,-115.1812702 -36.12560893,-115.1812685 -36.1256014,-115.1812669 -36.1255943,-115.1812653 -36.12558676,-115.1812636 -36.12557923,-115.1812619 -36.12557213,-115.1812603 -36.12556459,-115.1812587 -36.12555706,-115.181257 -36.12554996,-115.1812554 -36.12554242,-115.1812537 -36.12553489,-115.1812521 -36.12552779,-115.1812505 -36.12552025,-115.1812488 -36.12551272,-115.1812471 -36.12550562,-115.1812455 -36.12549808,-115.1812439 -36.12549055,-115.1812422 -36.12548345,-115.1812406 -36.12547591,-115.1812389 -36.12546838,-115.1812373 -36.12546128,-115.1812357 -36.12545375,-115.181234 -36.12544621,-115.1812323 -36.12543911,-115.1812307 -36.12543158,-115.1812291 -36.12542404,-115.1812274 -36.12541694,-115.1812258 -36.12540941,-115.1812241 -36.12540187,-115.1812225 -36.12539477,-115.1812209 -36.12538724,-115.1812192 -36.1253797,-115.1812175 -36.1253726,-115.1812159 -36.12536507,-115.1812143 -36.12535753,-115.1812126 -36.12535043,-115.181211 -36.1253429,-115.1812093 -36.12533536,-115.1812077 -36.12532826,-115.1812061 -36.12532073,-115.1812044 -36.12531319,-115.1812027 -36.12530609,-115.1812011 -36.12529856,-115.1811995 -36.12529102,-115.1811978 -36.12528393,-115.1811962 -36.12527639,-115.1811945 -36.12526885,-115.1811929 -36.12526175,-115.1811913 -36.12525422,-115.1811896 -36.12524668,-115.1811879 -36.12523958,-115.1811864 -36.12523204,-115.1811847 -36.1252245,-115.181183 -36.12521741,-115.1811815 -36.12520987,-115.1811798 -36.12520233,-115.1811781 -36.12519523,-115.1811766 -36.12518769,-115.1811749 -36.12518015,-115.1811732 -36.12517306,-115.1811717 -36.12516552,-115.18117 -36.12515798,-115.1811683 -36.12515088,-115.1811668 -36.12514335,-115.1811651 -36.12513581,-115.1811634 -36.12512871,-115.1811619 -36.12512117,-115.1811602 -36.12511363,-115.1811585 -36.12510654,-115.181157 -36.125099,-115.1811553 -36.12509146,-115.1811536 -36.12508436,-115.1811521 -36.12507682,-115.1811504 -36.12506928,-115.1811487 -36.12506219,-115.1811472 -36.12505465,-115.1811455 -36.12504711,-115.1811438 -36.12504001,-115.1811422 -36.12503248,-115.1811406 -36.12502494,-115.1811389 -36.12501784,-115.1811373 -36.1250103,-115.1811357 -36.12500276,-115.181134 -36.12499567,-115.1811324 -36.12498813,-115.1811308 -36.12498059,-115.1811291 -36.12497349,-115.1811275 -36.12496595,-115.1811259 -36.12495841,-115.1811242 -36.12495132,-115.1811226 -36.12494378,-115.181121 -36.12493624,-115.1811193 -36.12492914,-115.1811177 -36.12492161,-115.1811161 -36.12491407,-115.1811144 -36.12490697,-115.1811128 -36.12489943,-115.1811112 -36.12489189,-115.1811095 -36.1248848,-115.1811079 -36.12487726,-115.1811063 -36.12486972,-115.1811046 -36.12486262,-115.181103 -36.12485508,-115.1811014 -36.12484754,-115.1810997 -36.12484045,-115.1810981 -36.12483291,-115.1810964 -36.12482537,-115.1810948 -36.12481827,-115.1810932 -36.12481074,-115.1810915 -36.1248032,-115.1810899 -36.1247961,-115.1810883 -36.12478856,-115.1810866 -36.12478102,-115.181085 -36.12477393,-115.1810834 -36.12476639,-115.1810817 -36.12475885,-115.1810801 -36.12475175,-115.1810785 -36.12474421,-115.1810768 -36.12473667,-115.1810752 -36.12472958,-115.1810736 -36.12472204,-115.1810719 -36.1247145,-115.1810703 -36.1247074,-115.1810687 -36.12469987,-115.181067 -36.12469233,-115.1810654 -36.12468523,-115.1810638 -36.12467769,-115.1810621 -36.12467015,-115.1810605 -36.12466306,-115.1810589 -36.12465552,-115.1810572 -36.12464797,-115.1810556 -36.12464086,-115.1810541 -36.12463331,-115.1810525 -36.12462576,-115.181051 -36.12461865,-115.1810495 -36.12461109,-115.181048 -36.12460354,-115.1810464 -36.12459643,-115.1810449 -36.12458888,-115.1810434 -36.12458132,-115.1810418 -36.12457421,-115.1810403 -36.12456666,-115.1810388 -36.12455911,-115.1810372 -36.124552,-115.1810357 -36.12454444,-115.1810342 -36.12453689,-115.1810326 -36.12452978,-115.1810311 -36.12452222,-115.1810296 -36.12451467,-115.181028 -36.12450756,-115.1810265 -36.12450001,-115.181025 -36.12449245,-115.1810234 -36.12448534,-115.1810219 -36.12447779,-115.1810204 -36.12447023,-115.1810188 -36.12446312,-115.1810174 -36.12445555,-115.1810159 -36.12444799,-115.1810144 -36.12444088,-115.181013 -36.12443332,-115.1810115 -36.12442576,-115.18101 -36.12441864,-115.1810085 -36.12441108,-115.181007 -36.12440352,-115.1810055 -36.1243964,-115.1810041 -36.12438884,-115.1810026 -36.12438128,-115.1810011 -36.12437417,-115.1809996 -36.12436661,-115.1809981 -36.12435905,-115.1809966 -36.12435193,-115.1809952 -36.12434437,-115.1809937 -36.12433681,-115.1809922 -36.12432969,-115.1809907 -36.12432213,-115.1809892 -36.12431457,-115.1809877 -36.12430745,-115.1809863 -36.12429989,-115.1809848 -36.12429233,-115.1809833 -36.12428522,-115.1809818 -36.12427766,-115.1809803 -36.1242701,-115.1809788 -36.12426298,-115.1809774 -36.12425542,-115.1809759 -36.12424786,-115.1809744 -36.12424074,-115.1809729 -36.12423318,-115.1809714 -36.12422562,-115.1809699 -36.12421851,-115.1809685 -36.12421095,-115.180967 -36.12420338,-115.1809655 -36.12419627,-115.1809641 -36.12418871,-115.1809625 -36.12418115,-115.180961 -36.12417403,-115.1809596 -36.12416647,-115.1809581 -36.12415891,-115.1809566 -36.12415179,-115.1809552 -36.12414423,-115.1809536 -36.12413667,-115.1809521 -36.12412956,-115.1809507 -36.124122,-115.1809492 -36.12411436,-115.1809487 -36.12410715,-115.1809483 -36.1240995,-115.1809479 -36.12409185,-115.1809475 -36.12408464,-115.1809472 -36.12407699,-115.1809468 -36.12406934,-115.1809464 -36.12406213,-115.1809461 -36.12405448,-115.1809457 -36.12404683,-115.1809453 -36.12403962,-115.1809449 -36.12403197,-115.1809446 -36.12402432,-115.1809442 -36.12401711,-115.1809438 -36.12400946,-115.1809434 -36.12400181,-115.1809431 -36.1239946,-115.1809427 -36.12398695,-115.1809423 -36.1239793,-115.1809419 -36.12397209,-115.1809416 -36.12396444,-115.1809412 -36.12395679,-115.1809408 -36.12394958,-115.1809405 -36.12394193,-115.1809401 -36.12393428,-115.1809397 -36.12392707,-115.1809393 -36.12391942,-115.180939 -36.12391177,-115.1809386 -36.12390457,-115.1809382 -36.12389691,-115.1809378 -36.12388926,-115.1809374 -36.12388206,-115.1809369 -36.12387441,-115.1809365 -36.12386676,-115.180936 -36.12385956,-115.1809356 -36.12385191,-115.1809351 -36.12384426,-115.1809346 -36.12383706,-115.1809342 -36.12382941,-115.1809338 -36.12382176,-115.1809333 -36.12381456,-115.1809329 -36.12380691,-115.1809324 -36.12379926,-115.1809319 -36.12379206,-115.1809315 -36.12378441,-115.180931 -36.12377676,-115.1809306 -36.12376956,-115.1809302 -36.12376191,-115.1809297 -36.12375426,-115.1809292 -36.12374705,-115.1809288 -36.1237394,-115.1809283 -36.12373175,-115.1809279 -36.12372455,-115.1809274 -36.1237169,-115.180927 -36.12370925,-115.1809265 -36.12370205,-115.1809261 -36.1236944,-115.1809256 -36.12368675,-115.1809252 -36.12367955,-115.1809247 -36.1236719,-115.1809243 -36.12366425,-115.1809238 -36.12365705,-115.1809234 -36.1236494,-115.1809229 -36.12364175,-115.1809225 -36.12363455,-115.180922 -36.1236269,-115.1809216 -36.12361925,-115.1809211 -36.12361205,-115.1809207 -36.1236044,-115.1809202 -36.12359675,-115.1809198 -36.12358955,-115.1809193 -36.1235819,-115.1809189 -36.12357425,-115.1809184 -36.12356705,-115.180918 -36.12355939,-115.1809175 -36.12355174,-115.180917 -36.12354454,-115.1809166 -36.12353689,-115.1809162 -36.12352924,-115.1809157 -36.12352204,-115.1809153 -36.12351439,-115.1809148 -36.12350674,-115.1809143 -36.12349954,-115.1809139 -36.12349189,-115.1809134 -36.12348424,-115.180913 -36.12347704,-115.1809125 -36.12346939,-115.1809121 -36.12346174,-115.1809116 -36.12345454,-115.1809112 -36.12344689,-115.1809107 -36.12343924,-115.1809103 -36.12343204,-115.1809098 -36.12342439,-115.1809094 -36.12341674,-115.1809089 -36.12340954,-115.1809085 -36.12340189,-115.180908 -36.12339424,-115.1809076 -36.12338704,-115.1809071 -36.12337938,-115.1809067 -36.12337173,-115.1809062 -36.12336453,-115.1809058 -36.12335688,-115.1809053 -36.12334923,-115.1809049 -36.12334203,-115.1809044 -36.12333438,-115.180904 -36.12332673,-115.1809035 -36.12331953,-115.1809031 -36.12331188,-115.1809026 -36.12330423,-115.1809022 -36.12329703,-115.1809017 -36.12328938,-115.1809013 -36.12328173,-115.1809008 -36.12327453,-115.1809004 -36.12326688,-115.1808999 -36.12325923,-115.1808994 -36.12325203,-115.180899 -36.12324438,-115.1808985 -36.12323673,-115.1808981 -36.12322953,-115.1808977 -36.12322188,-115.1808972 -36.12321423,-115.1808967 -36.12320703,-115.1808963 -36.12319937,-115.1808958 -36.12319172,-115.1808954 -36.12318452,-115.1808949 -36.12317687,-115.1808945 -36.12316922,-115.180894 -36.12316202,-115.1808936 -36.12315437,-115.1808931 -36.12314672,-115.1808927 -36.12313952,-115.1808922 -36.12313187,-115.1808918 -36.12312422,-115.1808913 -36.12311702,-115.1808909 -36.12310937,-115.1808904 -36.12310172,-115.18089 -36.12309452,-115.1808895 -36.12308687,-115.1808891 -36.12307922,-115.1808886 -36.12307202,-115.1808882 -36.12306437,-115.1808877 -36.12305672,-115.1808873 -36.12304952,-115.1808868 -36.12304187,-115.1808864 -36.12303422,-115.1808859 -36.12302702,-115.1808855 -36.12301936,-115.180885 -36.12301171,-115.1808845 -36.12300451,-115.1808841 -36.12299686,-115.1808837 -36.12298921,-115.1808832 -36.12298201,-115.1808828 -36.12297436,-115.1808823 -36.12296671,-115.1808818 -36.12295951,-115.1808814 -36.12295186,-115.1808809 -36.12294421,-115.1808805 -36.12293701,-115.1808801 -36.12292936,-115.1808796 -36.12292171,-115.1808791 -36.12291451,-115.1808787 -36.12290686,-115.1808782 -36.12289921,-115.1808778 -36.12289201,-115.1808773 -36.12288436,-115.1808769 -36.12287671,-115.1808764 -36.12286951,-115.180876 -36.12286186,-115.1808755 -36.12285421,-115.1808751 -36.12284701,-115.1808746 -36.12283936,-115.1808742 -36.1228317,-115.1808737 -36.1228245,-115.1808733 -36.12281685,-115.1808728 -36.1228092,-115.1808724 -36.122802,-115.1808719 -36.12279435,-115.1808715 -36.1227867,-115.180871 -36.1227795,-115.1808706 -36.12277185,-115.1808701 -36.1227642,-115.1808697 -36.122757,-115.1808692 -36.12274935,-115.1808688 -36.1227417,-115.1808683 -36.1227345,-115.1808679 -36.12272685,-115.1808674 -36.1227192,-115.1808669 -36.122712,-115.1808665 -36.12270435,-115.1808661 -36.1226967,-115.1808656 -36.1226895,-115.1808652 -36.12268185,-115.1808647 -36.1226742,-115.1808642 -36.122667,-115.1808638 -36.12265935,-115.1808633 -36.12265169,-115.1808629 -36.12264449,-115.1808625 -36.12263684,-115.180862 -36.12262918,-115.180862 -36.12262198,-115.1808619 -36.12261432,-115.1808619 -36.12260666,-115.1808618 -36.12259945,-115.1808618 -36.12259179,-115.1808618 -36.12258413,-115.1808617 -36.12257692,-115.1808617 -36.12256926,-115.1808616 -36.1225616,-115.1808616 -36.12255439,-115.1808616 -36.12254673,-115.1808615 -36.12253907,-115.1808615 -36.12253186,-115.1808614 -36.1225242,-115.1808614 -36.12251655,-115.1808614 -36.12250934,-115.1808613 -36.12250168,-115.1808613 -36.12249402,-115.1808612 -36.12248681,-115.1808612 -36.12247915,-115.1808611 -36.12247149,-115.1808611 -36.12246428,-115.1808611 -36.12245662,-115.180861 -36.12244896,-115.180861 -36.12244175,-115.1808609 -36.12243409,-115.1808609 -36.12242643,-115.1808609 -36.12241923,-115.1808608 -36.12241157,-115.1808608 -36.12240391,-115.1808607 -36.1223967,-115.1808607 -36.12238904,-115.1808607 -36.12238138,-115.1808606 -36.12237417,-115.1808606 -36.12236651,-115.1808605 -36.12235885,-115.1808605 -36.12235164,-115.1808605 -36.12234398,-115.1808604 -36.12233632,-115.1808604 -36.12232911,-115.1808603 -36.12232145,-115.1808603 -36.12231379,-115.1808603 -36.12230659,-115.1808602 -36.12229893,-115.1808602 -36.12229127,-115.1808601 -36.12228406,-115.1808601 -36.1222764,-115.1808601 -36.12226874,-115.18086 -36.12226153,-115.18086 -36.12225387,-115.1808599 -36.12224621,-115.1808599 -36.122239,-115.1808599 -36.12223134,-115.1808598 -36.12222368,-115.1808598 -36.12221647,-115.1808597 -36.12220882,-115.1808597 -36.12220116,-115.1808597 -36.12219395,-115.1808596 -36.12218629,-115.1808596 -36.12217863,-115.1808595 -36.12217142,-115.1808595 -36.12216376,-115.1808594 -36.1221561,-115.1808594 -36.12214889,-115.1808594 -36.12214123,-115.1808593 -36.12213357,-115.1808593 -36.12212636,-115.1808592 -36.1221187,-115.1808592 -36.12211104,-115.1808592 -36.12210384,-115.1808591 -36.12209618,-115.1808591 -36.12208852,-115.180859 -36.12208131,-115.180859 -36.12207365,-115.180859 -36.12206599,-115.1808589 -36.12205878,-115.1808589 -36.12205112,-115.1808588 -36.12204346,-115.1808588 -36.12203625,-115.1808588 -36.12202859,-115.1808587 -36.12202093,-115.1808587 -36.12201372,-115.1808586 -36.12200606,-115.1808586 -36.12199841,-115.1808586 -36.1219912,-115.1808585 -36.12198354,-115.1808585 -36.12197588,-115.1808584 -36.12196867,-115.1808584 -36.12196101,-115.1808584 -36.12195335,-115.1808583 -36.12194614,-115.1808583 -36.12193848,-115.1808582 -36.12193082,-115.1808582 -36.12192361,-115.1808582 -36.12191595,-115.1808581 -36.12190829,-115.1808581 -36.12190109,-115.180858 -36.12189343,-115.180858 -36.12188577,-115.180858 -36.12187856,-115.180858 -36.1218709,-115.180858 -36.12186324,-115.180858 -36.12185603,-115.180858 -36.12184837,-115.1808579 -36.12184071,-115.1808579 -36.1218335,-115.1808579 -36.12182584,-115.1808579 -36.12181818,-115.1808579 -36.12181097,-115.1808579 -36.12180331,-115.1808579 -36.12179565,-115.1808579 -36.12178844,-115.1808579 -36.12178079,-115.1808579 -36.12177313,-115.1808579 -36.12176592,-115.1808579 -36.12175826,-115.1808578 -36.1217506,-115.1808578 -36.12174339,-115.1808578 -36.12173573,-115.1808578 -36.12172807,-115.1808578 -36.12172086,-115.1808578 -36.1217132,-115.1808578 -36.12170554,-115.1808578 -36.12169833,-115.1808578 -36.12169067,-115.1808578 -36.12168301,-115.1808578 -36.1216758,-115.1808577 -36.12166815,-115.1808577 -36.12166049,-115.1808577 -36.12165328,-115.1808577 -36.12164562,-115.1808577 -36.12163796,-115.1808577 -36.12163075,-115.1808577 -36.12162309,-115.1808577 -36.12161543,-115.1808577 -36.12160822,-115.1808577 -36.12160056,-115.1808577 -36.1215929,-115.1808576 -36.12158569,-115.1808576 -36.12157803,-115.1808576 -36.12157037,-115.1808576 -36.12156316,-115.1808576 -36.12155551,-115.1808576 -36.12154785,-115.1808576 -36.12154064,-115.1808576 -36.12153298,-115.1808576 -36.12152532,-115.1808576 -36.12151811,-115.1808576 -36.12151045,-115.1808576 -36.12150279,-115.1808575 -36.12149558,-115.1808575 -36.12148792,-115.1808575 -36.12148026,-115.1808575 -36.12147305,-115.1808575 -36.12146539,-115.1808575 -36.12145773,-115.1808575 -36.12145052,-115.1808575 -36.12144286,-115.1808575 -36.12143521,-115.1808575 -36.121428,-115.1808575 -36.12142034,-115.1808574 -36.12141268,-115.1808574 -36.12140547,-115.1808574 -36.12139781,-115.1808574 -36.12139015,-115.1808574 -36.12138294,-115.1808574 -36.12137528,-115.1808574 -36.12136762,-115.1808574 -36.12136041,-115.1808574 -36.12135275,-115.1808574 -36.12134509,-115.1808574 -36.12133788,-115.1808574 -36.12133022,-115.1808573 -36.12132257,-115.1808573 -36.12131536,-115.1808573 -36.1213077,-115.1808573 -36.12130004,-115.1808573 -36.12129283,-115.1808573 -36.12128517,-115.1808573 -36.12127751,-115.1808573 -36.1212703,-115.1808573 -36.12126264,-115.1808573 -36.12125498,-115.1808573 -36.12124777,-115.1808572 -36.12124011,-115.1808572 -36.12123245,-115.1808572 -36.12122524,-115.1808572 -36.12121758,-115.1808572 -36.12120993,-115.1808572 -36.12120272,-115.1808572 -36.12119506,-115.1808572 -36.1211874,-115.1808572 -36.12118019,-115.1808572 -36.12117253,-115.1808572 -36.12116487,-115.1808572 -36.12115766,-115.1808571 -36.12115,-115.1808571 -36.12114234,-115.1808571 -36.12113513,-115.1808571 -36.12112747,-115.1808571 -36.12111981,-115.1808571 -36.1211126,-115.1808571 -36.12110494,-115.1808571 -36.12109728,-115.1808571 -36.12109008,-115.1808571 -36.12108242,-115.1808571 -36.12107476,-115.180857 -36.12106755,-115.180857 -36.12105989,-115.180857 -36.12105223,-115.180857 -36.12104502,-115.180857 -36.12103736,-115.180857 -36.1210297,-115.180857 -36.12102249,-115.180857 -36.12101483,-115.180857 -36.12100717,-115.180857 -36.12099996,-115.180857 -36.1209923,-115.180857 -36.12098464,-115.180857 -36.12097744,-115.180857 -36.12096978,-115.180857 -36.12096212,-115.180857 -36.12095491,-115.180857 -36.12094725,-115.180857 -36.12093964,-115.180856 -36.12093249,-115.1808548 -36.1209249,-115.1808536 -36.1209173,-115.1808524 -36.12091016,-115.1808512 -36.12090256,-115.18085 -36.12089497,-115.1808488 -36.12088782,-115.1808476 -36.12088022,-115.1808464 -36.12087263,-115.1808452 -36.12086548,-115.180844 -36.12085788,-115.1808428 -36.12085029,-115.1808416 -36.12084314,-115.1808404 -36.12083555,-115.1808392 -36.12082795,-115.180838 -36.1208208,-115.1808369 -36.12081321,-115.1808356 -36.12080561,-115.1808344 -36.12079846,-115.1808333 -36.12079087,-115.180832 -36.12078327,-115.1808308 -36.12077612,-115.1808297 -36.12076853,-115.1808284 -36.12076093,-115.1808272 -36.12075379,-115.1808261 -36.12074619,-115.1808248 -36.1207386,-115.1808236 -36.12073145,-115.1808225 -36.12072385,-115.1808213 -36.12071626,-115.18082 -36.12070911,-115.1808189 -36.12070151,-115.1808177 -36.12069392,-115.1808164 -36.12068677,-115.1808153 -36.12067918,-115.1808141 -36.12067158,-115.1808128 -36.12066443,-115.1808117 -36.12065684,-115.1808105 -36.12064924,-115.1808092 -36.12064209,-115.1808081 -36.1206345,-115.1808069 -36.1206269,-115.1808057 -36.12061976,-115.1808045 -36.12061216,-115.1808033 -36.12060457,-115.1808021 -36.12059741,-115.180801 -36.12058976,-115.1808006 -36.12058211,-115.1808002 -36.1205749,-115.1807999 -36.12056725,-115.1807995 -36.1205596,-115.1807991 -36.12055239,-115.1807988 -36.12054474,-115.1807984 -36.12053708,-115.180798 -36.12052988,-115.1807977 -36.12052223,-115.1807973 -36.12051457,-115.1807969 -36.12050737,-115.1807966 -36.12049972,-115.1807962 -36.12049206,-115.1807958 -36.12048486,-115.1807955 -36.12047721,-115.1807951 -36.12046955,-115.1807947 -36.12046235,-115.1807944 -36.1204547,-115.180794 -36.12044704,-115.1807936 -36.12043984,-115.1807933 -36.12043219,-115.1807929 -36.12042453,-115.1807925 -36.12041733,-115.1807922 -36.12040968,-115.1807918 -36.12040202,-115.1807914 -36.12039482,-115.1807911 -36.12038717,-115.1807907 -36.12037951,-115.1807903 -36.12037231,-115.18079 -36.12036466,-115.1807896 -36.120357,-115.1807892 -36.1203498,-115.1807889 -36.12034214,-115.1807885 -36.12033449,-115.1807881 -36.12032729,-115.1807878 -36.12031963,-115.1807874 -36.12031198,-115.180787 -36.12030478,-115.1807867 -36.12029712,-115.1807863 -36.12028947,-115.1807859 -36.12028227,-115.1807856 -36.12027461,-115.1807852 -36.12026696,-115.1807848 -36.12025976,-115.1807845 -36.1202521,-115.1807841 -36.12024445,-115.1807837 -36.12023725,-115.1807834 -36.12022959,-115.180783 -36.12022194,-115.1807826 -36.12021474,-115.1807823 -36.12020708,-115.1807819 -36.12019943,-115.1807815 -36.12019223,-115.1807812 -36.12018457,-115.1807808 -36.12017692,-115.1807804 -36.12016972,-115.1807801 -36.12016206,-115.1807797 -36.12015441,-115.1807793 -36.12014721,-115.180779 -36.12013955,-115.1807786 -36.1201319,-115.1807782 -36.12012469,-115.1807779 -36.12011704,-115.1807775 -36.12010939,-115.1807771 -36.12010218,-115.1807768 -36.12009453,-115.1807764 -36.12008688,-115.180776 -36.12007967,-115.1807757 -36.12007202,-115.1807753 -36.12006437,-115.1807749 -36.12005716,-115.1807746 -36.12004951,-115.1807742 -36.12004186,-115.1807738 -36.12003465,-115.1807735 -36.120027,-115.1807731 -36.12001935,-115.1807727 -36.12001214,-115.1807724 -36.12000449,-115.180772 -36.11999684,-115.1807716 -36.11998963,-115.1807713 -36.11998198,-115.1807709 -36.11997433,-115.1807705 -36.11996712,-115.1807702 -36.11995947,-115.1807698 -36.11995181,-115.1807694 -36.11994461,-115.1807691 -36.11993695,-115.180769 -36.11992929,-115.180769 -36.11992208,-115.180769 -36.11991443,-115.180769 -36.11990677,-115.180769 -36.11989956,-115.180769 -36.1198919,-115.180769 -36.11988424,-115.180769 -36.11987703,-115.180769 -36.11986937,-115.180769 -36.11986171,-115.180769 -36.1198545,-115.180769 -36.11984684,-115.180769 -36.11983918,-115.1807691 -36.11983197,-115.1807691 -36.11982431,-115.1807691 -36.11981665,-115.1807692 -36.11980945,-115.1807692 -36.11980179,-115.1807693 -36.11979413,-115.1807693 -36.11978692,-115.1807693 -36.11977926,-115.1807694 -36.1197716,-115.1807694 -36.11976439,-115.1807695 -36.11975673,-115.1807695 -36.11974907,-115.1807696 -36.11974186,-115.1807696 -36.1197342,-115.1807696 -36.11972654,-115.1807697 -36.11971933,-115.1807697 -36.11971167,-115.1807698 -36.11970401,-115.1807698 -36.11969681,-115.1807699 -36.11968915,-115.1807699 -36.11968149,-115.1807699 -36.11967428,-115.18077 -36.11966662,-115.18077 -36.11965896,-115.18077 -36.11965175,-115.18077 -36.11964409,-115.18077 -36.11963643,-115.18077 -36.11962922,-115.18077 -36.11962156,-115.18077 -36.1196139,-115.18077 -36.11960669,-115.18077 -36.11959903,-115.18077 -36.11959137,-115.18077 -36.11958417,-115.18077 -36.11957651,-115.18077 -36.11956885,-115.18077 -36.11956164,-115.18077 -36.11955398,-115.18077 -36.11954632,-115.18077 -36.11953911,-115.18077 -36.11953145,-115.18077 -36.11952379,-115.18077 -36.11951658,-115.18077 -36.11950892,-115.18077 -36.11950126,-115.18077 -36.11949405,-115.18077 -36.11948639,-115.18077 -36.11947873,-115.18077 -36.11947153,-115.18077 -36.11946387,-115.18077 -36.11945621,-115.18077 -36.119449,-115.18077 -36.11944134,-115.1807699 -36.11943368,-115.1807699 -36.11942557,-115.1807699 -36.11941836,-115.1807699 -36.1194107,-115.1807699 -36.11940349,-115.1807699 -36.11939583,-115.1807699 -36.11938817,-115.1807699 -36.11938096,-115.1807699 -36.1193733,-115.1807699 -36.11936564,-115.1807699 -36.11935843,-115.1807699 -36.11935078,-115.1807699 -36.11934312,-115.1807699 -36.11933591,-115.1807699 -36.11932825,-115.1807699 -36.11932059,-115.1807699 -36.11931338,-115.1807699 -36.11930572,-115.1807699 -36.11929806,-115.1807699 -36.11929085,-115.1807699 -36.11928319,-115.1807699 -36.11927553,-115.1807699 -36.11926832,-115.1807699 -36.11926066,-115.1807699 -36.119253,-115.1807699 -36.11924579,-115.1807699 -36.11923813,-115.1807699 -36.11923048,-115.1807699 -36.11922327,-115.1807699 -36.11921561,-115.1807699 -36.11920795,-115.1807699 -36.11920074,-115.1807699 -36.11919308,-115.1807699 -36.11918542,-115.1807699 -36.11917821,-115.1807699 -36.11917055,-115.1807699 -36.11916289,-115.1807699 -36.11915568,-115.1807699 -36.11914802,-115.1807699 -36.11914036,-115.1807699 -36.11913315,-115.1807699 -36.11912549,-115.1807699 -36.11911784,-115.1807699 -36.11911063,-115.1807699 -36.11910297,-115.1807699 -36.11909531,-115.1807699 -36.1190881,-115.1807699 -36.11908044,-115.1807699 -36.11907278,-115.1807699 -36.11906557,-115.1807699 -36.11905791,-115.1807699 -36.11905025,-115.1807699 -36.11904304,-115.1807699 -36.11903538,-115.1807699 -36.11902772,-115.1807699 -36.11902051,-115.1807699 -36.11901285,-115.1807699 -36.11900519,-115.1807699 -36.11899799,-115.1807699 -36.11899033,-115.1807698 -36.11898267,-115.1807698 -36.11897546,-115.1807698 -36.1189678,-115.1807698 -36.11896014,-115.1807698 -36.11895293,-115.1807698 -36.11894527,-115.1807698 -36.11893761,-115.1807698 -36.1189304,-115.1807698 -36.11892274,-115.1807698 -36.11891508,-115.1807698 -36.11890787,-115.1807698 -36.11890021,-115.1807698 -36.11889255,-115.1807698 -36.11888535,-115.1807698 -36.11887769,-115.1807698 -36.11887003,-115.1807698 -36.11886282,-115.1807698 -36.11885516,-115.1807698 -36.1188475,-115.1807698 -36.11884029,-115.1807698 -36.11883263,-115.1807698 -36.11882497,-115.1807698 -36.11881776,-115.1807698 -36.1188101,-115.1807698 -36.11880244,-115.1807698 -36.11879523,-115.1807698 -36.11878757,-115.1807698 -36.11877991,-115.1807698 -36.11877271,-115.1807698 -36.11876505,-115.1807698 -36.11875739,-115.1807698 -36.11875018,-115.1807698 -36.11874252,-115.1807698 -36.11873486,-115.1807698 -36.11872765,-115.1807698 -36.11871999,-115.1807698 -36.11871233,-115.1807698 -36.11870512,-115.1807698 -36.11869746,-115.1807698 -36.1186898,-115.1807698 -36.11868259,-115.1807698 -36.11867493,-115.1807698 -36.11866727,-115.1807698 -36.11866006,-115.1807698 -36.11865241,-115.1807698 -36.11864475,-115.1807698 -36.11863754,-115.1807698 -36.11862988,-115.1807698 -36.11862222,-115.1807698 -36.11861501,-115.1807698 -36.11860735,-115.1807698 -36.11859969,-115.1807698 -36.11859248,-115.1807698 -36.11858482,-115.1807698 -36.11857716,-115.1807698 -36.11856995,-115.1807698 -36.11856229,-115.1807698 -36.11855463,-115.1807698 -36.11854742,-115.1807697 -36.11853976,-115.1807697 -36.11853211,-115.1807697 -36.1185249,-115.1807697 -36.11851724,-115.1807697 -36.11850958,-115.1807697 -36.11850237,-115.1807697 -36.11849471,-115.1807697 -36.11848705,-115.1807697 -36.11847984,-115.1807697 -36.11847218,-115.1807697 -36.11846452,-115.1807697 -36.11845731,-115.1807697 -36.11844965,-115.1807697 -36.11844199,-115.1807697 -36.11843478,-115.1807697 -36.11842712,-115.1807697 -36.11841947,-115.1807697 -36.11841226,-115.1807697 -36.1184046,-115.1807697 -36.11839694,-115.1807697 -36.11838973,-115.1807697 -36.11838207,-115.1807697 -36.11837441,-115.1807697 -36.1183672,-115.1807697 -36.11835954,-115.1807697 -36.11835188,-115.1807697 -36.11834467,-115.1807697 -36.11833701,-115.1807697 -36.11832935,-115.1807697 -36.11832214,-115.1807697 -36.11831448,-115.1807697 -36.11830682,-115.1807697 -36.11829962,-115.1807697 -36.11829196,-115.1807697 -36.1182843,-115.1807697 -36.11827709,-115.1807697 -36.11826943,-115.1807697 -36.11826177,-115.1807697 -36.11825456,-115.1807697 -36.1182469,-115.1807697 -36.11823924,-115.1807697 -36.11823203,-115.1807697 -36.11822437,-115.1807697 -36.11821671,-115.1807697 -36.1182095,-115.1807697 -36.11820184,-115.1807697 -36.11819418,-115.1807697 -36.11818698,-115.1807697 -36.11817932,-115.1807697 -36.11817166,-115.1807697 -36.11816445,-115.1807697 -36.11815679,-115.1807697 -36.11814913,-115.1807697 -36.11814192,-115.1807697 -36.11813426,-115.1807697 -36.1181266,-115.1807697 -36.11811939,-115.1807697 -36.11811173,-115.1807697 -36.11810407,-115.1807697 -36.11809686,-115.1807696 -36.1180892,-115.1807696 -36.11808154,-115.1807696 -36.11807434,-115.1807696 -36.11806668,-115.1807696 -36.11805902,-115.1807696 -36.11805181,-115.1807696 -36.11804415,-115.1807696 -36.11803649,-115.1807696 -36.11802928,-115.1807696 -36.11802162,-115.1807696 -36.11801396,-115.1807696 -36.11800675,-115.1807696 -36.11799909,-115.1807696 -36.11799143,-115.1807696 -36.11798422,-115.1807696 -36.11797656,-115.1807696 -36.1179689,-115.1807696 -36.11796169,-115.1807696 -36.11795404,-115.1807696 -36.11794638,-115.1807696 -36.11793917,-115.1807696 -36.11793151,-115.1807696 -36.11792385,-115.1807696 -36.11791664,-115.1807696 -36.11790898,-115.1807696 -36.11790132,-115.1807696 -36.11789411,-115.1807696 -36.11788645,-115.1807696 -36.11787879,-115.1807696 -36.11787158,-115.1807696 -36.11786392,-115.1807696 -36.11785626,-115.1807696 -36.11784905,-115.1807696 -36.11784139,-115.1807696 -36.11783374,-115.1807696 -36.11782653,-115.1807696 -36.11781887,-115.1807696 -36.11781121,-115.1807696 -36.117804,-115.1807696 -36.11779634,-115.1807696 -36.11778868,-115.1807696 -36.11778147,-115.1807696 -36.11777381,-115.1807696 -36.11776615,-115.1807696 -36.11775894,-115.1807696 -36.11775128,-115.1807696 -36.11774362,-115.1807696 -36.11773641,-115.1807696 -36.11772875,-115.1807696 -36.11772109,-115.1807696 -36.11771389,-115.1807696 -36.11770623,-115.1807696 -36.11769857,-115.1807696 -36.11769136,-115.1807696 -36.1176837,-115.1807696 -36.11767604,-115.1807696 -36.11766883,-115.1807696 -36.11766117,-115.1807696 -36.11765351,-115.1807695 -36.1176463,-115.1807695 -36.11763864,-115.1807695 -36.11763098,-115.1807695 -36.11762377,-115.1807695 -36.11761611,-115.1807695 -36.11760845,-115.1807695 -36.11760125,-115.1807695 -36.11759359,-115.1807695 -36.11758593,-115.1807695 -36.11757872,-115.1807695 -36.11757106,-115.1807695 -36.1175634,-115.1807695 -36.11755619,-115.1807695 -36.11754853,-115.1807695 -36.11754087,-115.1807695 -36.11753366,-115.1807695 -36.117526,-115.1807695 -36.11751834,-115.1807695 -36.11751113,-115.1807695 -36.11750347,-115.1807695 -36.11749581,-115.1807695 -36.11748861,-115.1807695 -36.11748095,-115.1807695 -36.11747329,-115.1807695 -36.11746608,-115.1807695 -36.11745842,-115.1807695 -36.11745076,-115.1807695 -36.11744355,-115.1807695 -36.11743589,-115.1807695 -36.11742823,-115.1807695 -36.11742102,-115.1807695 -36.11741336,-115.1807695 -36.1174057,-115.1807695 -36.11739849,-115.1807695 -36.11739083,-115.1807695 -36.11738317,-115.1807695 -36.11737596,-115.1807695 -36.11736831,-115.1807695 -36.11736065,-115.1807695 -36.11735344,-115.1807695 -36.11734578,-115.1807695 -36.11733812,-115.1807695 -36.11733091,-115.1807695 -36.11732325,-115.1807695 -36.11731559,-115.1807695 -36.11730838,-115.1807695 -36.11730072,-115.1807695 -36.11729306,-115.1807695 -36.11728585,-115.1807695 -36.11727819,-115.1807695 -36.11727053,-115.1807695 -36.11726332,-115.1807695 -36.11725566,-115.1807695 -36.11724801,-115.1807695 -36.1172408,-115.1807695 -36.11723314,-115.1807695 -36.11722548,-115.1807695 -36.11721827,-115.1807695 -36.11721061,-115.1807695 -36.11720295,-115.1807694 -36.11719574,-115.1807694 -36.11718808,-115.1807694 -36.11718042,-115.1807694 -36.11717321,-115.1807694 -36.11716555,-115.1807694 -36.11715789,-115.1807694 -36.11715068,-115.1807694 -36.11714302,-115.1807694 -36.11713537,-115.1807694 -36.11712816,-115.1807694 -36.1171205,-115.1807694 -36.11711284,-115.1807694 -36.11710563,-115.1807694 -36.11709797,-115.1807694 -36.11709031,-115.1807694 -36.1170831,-115.1807694 -36.11707544,-115.1807694 -36.11706778,-115.1807694 -36.11706057,-115.1807694 -36.11705291,-115.1807694 -36.11704525,-115.1807694 -36.11703804,-115.1807694 -36.11703038,-115.1807694 -36.11702272,-115.1807694 -36.11701552,-115.1807694 -36.11700786,-115.1807694 -36.1170002,-115.1807694 -36.11699299,-115.1807694 -36.11698533,-115.1807694 -36.11697767,-115.1807694 -36.11697046,-115.1807694 -36.1169628,-115.1807694 -36.11695514,-115.1807694 -36.11694793,-115.1807694 -36.11694027,-115.1807694 -36.11693261,-115.1807694 -36.1169254,-115.1807694 -36.11691774,-115.1807694 -36.11691008,-115.1807694 -36.11690288,-115.1807694 -36.11689522,-115.1807694 -36.11688756,-115.1807694 -36.11688035,-115.1807694 -36.11687269,-115.1807694 -36.11686503,-115.1807694 -36.11685782,-115.1807694 -36.11685016,-115.1807694 -36.1168425,-115.1807694 -36.11683529,-115.1807694 -36.11682763,-115.1807694 -36.11681997,-115.1807694 -36.11681276,-115.1807694 -36.1168051,-115.1807694 -36.11679744,-115.1807694 -36.11679023,-115.1807694 -36.11678258,-115.1807694 -36.11677492,-115.1807694 -36.11676771,-115.1807694 -36.11676005,-115.1807694 -36.11675239,-115.1807693 -36.11674518,-115.1807693 -36.11673752,-115.1807693 -36.11672986,-115.1807693 -36.11672265,-115.1807693 -36.11671499,-115.1807693 -36.11670733,-115.1807693 -36.11670012,-115.1807693 -36.11669246,-115.1807693 -36.1166848,-115.1807693 -36.11667759,-115.1807693 -36.11666993,-115.1807693 -36.11666228,-115.1807693 -36.11665507,-115.1807693 -36.11664741,-115.1807693 -36.11663975,-115.1807693 -36.11663254,-115.1807693 -36.11662488,-115.1807693 -36.11661722,-115.1807693 -36.11661001,-115.1807693 -36.11660235,-115.1807693 -36.11659469,-115.1807693 -36.11658748,-115.1807693 -36.11657982,-115.1807693 -36.11657216,-115.1807693 -36.11656495,-115.1807693 -36.11655729,-115.1807693 -36.11654964,-115.1807693 -36.11654243,-115.1807693 -36.11653477,-115.1807693 -36.11652711,-115.1807693 -36.1165199,-115.1807693 -36.11651224,-115.1807693 -36.11650458,-115.1807693 -36.11649737,-115.1807693 -36.11648971,-115.1807693 -36.11648205,-115.1807693 -36.11647484,-115.1807693 -36.11646718,-115.1807693 -36.11645952,-115.1807693 -36.11645231,-115.1807693 -36.11644465,-115.1807693 -36.11643699,-115.1807693 -36.11642979,-115.1807693 -36.11642213,-115.1807693 -36.11641447,-115.1807693 -36.11640726,-115.1807693 -36.1163996,-115.1807693 -36.11639194,-115.1807693 -36.11638473,-115.1807693 -36.11637707,-115.1807693 -36.11636941,-115.1807693 -36.1163622,-115.1807693 -36.11635454,-115.1807693 -36.11634688,-115.1807693 -36.11633967,-115.1807693 -36.11633201,-115.1807693 -36.11632435,-115.1807693 -36.11631715,-115.1807693 -36.11630949,-115.1807693 -36.11630183,-115.1807692 -36.11629462,-115.1807692 -36.11628696,-115.1807692 -36.1162793,-115.1807692 -36.11627209,-115.1807692 -36.11626443,-115.1807692 -36.11625677,-115.1807692 -36.11624956,-115.1807692 -36.1162419,-115.1807692 -36.11623424,-115.1807692 -36.11622703,-115.1807692 -36.11621937,-115.1807692 -36.11621171,-115.1807692 -36.1162045,-115.1807692 -36.11619685,-115.1807692 -36.11618919,-115.1807692 -36.11618198,-115.1807692 -36.11617432,-115.1807692 -36.11616666,-115.1807692 -36.11615945,-115.1807692 -36.11615179,-115.1807692 -36.11614413,-115.1807692 -36.11613692,-115.1807692 -36.11612926,-115.1807692 -36.1161216,-115.1807692 -36.11611439,-115.1807692 -36.11610673,-115.1807692 -36.11609907,-115.1807692 -36.11609186,-115.1807692 -36.1160842,-115.1807692 -36.11607655,-115.1807692 -36.11606934,-115.1807692 -36.11606168,-115.1807692 -36.11605402,-115.1807692 -36.11604681,-115.1807692 -36.11603915,-115.1807692 -36.11603149,-115.1807692 -36.11602428,-115.1807692 -36.11601662,-115.1807692 -36.11600896,-115.1807692 -36.11600175,-115.1807692 -36.11599409,-115.1807692 -36.11598643,-115.1807692 -36.11597922,-115.1807692 -36.11597156,-115.1807692 -36.1159639,-115.1807692 -36.1159567,-115.1807692 -36.11594904,-115.1807692 -36.11594138,-115.1807692 -36.11593417,-115.1807692 -36.11592651,-115.1807692 -36.11591885,-115.1807692 -36.11591164,-115.1807692 -36.11590398,-115.1807692 -36.11589632,-115.1807692 -36.11588911,-115.1807692 -36.11588145,-115.1807692 -36.11587379,-115.1807692 -36.11586658,-115.1807692 -36.11585892,-115.1807691 -36.11585126,-115.1807691 -36.11584406,-115.1807691 -36.1158364,-115.1807691 -36.11582874,-115.1807691 -36.11582153,-115.1807691 -36.11581387,-115.1807691 -36.11580621,-115.1807691 -36.115799,-115.1807691 -36.11579134,-115.1807691 -36.11578368,-115.1807691 -36.11577647,-115.1807691 -36.11576881,-115.1807691 -36.11576115,-115.1807691 -36.11575394,-115.1807691 -36.11574628,-115.1807691 -36.11573862,-115.1807691 -36.11573142,-115.1807691 -36.11572376,-115.1807691 -36.1157161,-115.1807691 -36.11570889,-115.1807691 -36.11570123,-115.1807691 -36.11569357,-115.1807691 -36.11568636,-115.1807691 -36.1156787,-115.1807691 -36.11567104,-115.1807691 -36.11566383,-115.1807691 -36.11565617,-115.1807691 -36.11564851,-115.1807691 -36.1156413,-115.1807691 -36.11563364,-115.1807691 -36.11562598,-115.1807691 -36.11561877,-115.1807691 -36.11561112,-115.1807691 -36.11560346,-115.1807691 -36.11559625,-115.1807691 -36.11558859,-115.1807691 -36.11558093,-115.1807691 -36.11557372,-115.1807691 -36.11556606,-115.1807691 -36.1155584,-115.1807691 -36.11555119,-115.1807691 -36.11554353,-115.1807691 -36.11553587,-115.1807691 -36.11552866,-115.1807691 -36.115521,-115.1807691 -36.11551334,-115.1807691 -36.11550613,-115.1807691 -36.11549847,-115.1807691 -36.11549082,-115.1807691 -36.11548361,-115.1807691 -36.11547595,-115.1807691 -36.11546829,-115.1807691 -36.11546108,-115.1807691 -36.11545342,-115.1807691 -36.11544576,-115.1807691 -36.11543855,-115.1807691 -36.11543089,-115.1807691 -36.11542323,-115.1807691 -36.11541602,-115.1807691 -36.11540836,-115.180769 -36.1154007,-115.180769 -36.11539349,-115.180769 -36.11538583,-115.180769 -36.11537817,-115.180769 -36.11537097,-115.180769 -36.11536331,-115.180769 -36.11535565,-115.180769 -36.11534844,-115.180769 -36.11534078,-115.180769 -36.11533312,-115.180769 -36.11532591,-115.180769 -36.11531825,-115.180769 -36.11531059,-115.180769 -36.11530338,-115.180769 -36.11529572,-115.180769 -36.11528806,-115.180769 -36.11528085,-115.180769 -36.11527319,-115.180769 -36.11526553,-115.180769 -36.11525833,-115.180769 -36.11525067,-115.180769 -36.11524301,-115.180769 -36.1152358,-115.180769 -36.11522814,-115.180769 -36.11522048,-115.180769 -36.11521327,-115.180769 -36.11520561,-115.180769 -36.11519795,-115.180769 -36.11519074,-115.180769 -36.11518308,-115.180769 -36.11517542,-115.180769 -36.11516821,-115.180769 -36.11516055,-115.180769 -36.11515289,-115.180769 -36.11514568,-115.180769 -36.11513803,-115.180769 -36.11513037,-115.180769 -36.11512316,-115.180769 -36.1151155,-115.180769 -36.11510784,-115.180769 -36.11510063,-115.180769 -36.11509297,-115.180769 -36.11508531,-115.180769 -36.1150781,-115.180769 -36.11507044,-115.180769 -36.11506278,-115.180769 -36.11505557,-115.180769 -36.11504791,-115.180769 -36.11504025,-115.180769 -36.11503304,-115.180769 -36.11502538,-115.180769 -36.11501773,-115.180769 -36.11501052,-115.180769 -36.11500286,-115.180769 -36.1149952,-115.180769 -36.11498799,-115.180769 -36.11498033,-115.180769 -36.11497267,-115.180769 -36.11496546,-115.180769 -36.1149578,-115.180769 -36.11495014,-115.180769 -36.11494293,-115.180769 -36.11493527,-115.180769 -36.11492761,-115.180769 -36.1149204,-115.180769 -36.11491274,-115.180769 -36.11490508,-115.180769 -36.11489788,-115.180769 -36.11489022,-115.180769 -36.11488256,-115.180769 -36.11487535,-115.180769 -36.11486769,-115.180769 -36.11486003,-115.180769 -36.11485282,-115.180769 -36.11484516,-115.180769 -36.1148375,-115.180769 -36.11483029,-115.180769 -36.11482263,-115.180769 -36.11481497,-115.180769 -36.11480776,-115.180769 -36.1148001,-115.180769 -36.11479244,-115.180769 -36.11478524,-115.180769 -36.11477758,-115.180769 -36.11476992,-115.180769 -36.11476271,-115.180769 -36.11475505,-115.180769 -36.11474739,-115.180769 -36.11474018,-115.180769 -36.11473252,-115.180769 -36.11472486,-115.180769 -36.11471765,-115.180769 -36.11470999,-115.180769 -36.11470233,-115.180769 -36.11469512,-115.180769 -36.11468746,-115.180769 -36.1146798,-115.180769 -36.11467259,-115.180769 -36.11466494,-115.180769 -36.11465728,-115.180769 -36.11465007,-115.180769 -36.11464241,-115.180769 -36.11463475,-115.180769 -36.11462754,-115.180769 -36.11461988,-115.180769 -36.11461222,-115.180769 -36.11460501,-115.180769 -36.11459735,-115.180769 -36.11458969,-115.180769 -36.11458248,-115.180769 -36.11457482,-115.180769 -36.11456716,-115.180769 -36.11455995,-115.180769 -36.11455229,-115.180769 -36.11454464,-115.180769 -36.11453743,-115.180769 -36.11452977,-115.180769 -36.11452211,-115.180769 -36.1145149,-115.180769 -36.11450724,-115.180769 -36.11449958,-115.180769 -36.11449237,-115.180769 -36.11448471,-115.180769 -36.11447705,-115.180769 -36.11446984,-115.180769 -36.11446218,-115.180769 -36.11445452,-115.180769 -36.11444731,-115.180769 -36.11443965,-115.180769 -36.11443199,-115.180769 -36.11442479,-115.180769 -36.11441713,-115.180769 -36.11440947,-115.180769 -36.11440226,-115.180769 -36.1143946,-115.180769 -36.11438694,-115.180769 -36.11437973,-115.180769 -36.11437207,-115.180769 -36.11436441,-115.180769 -36.1143572,-115.180769 -36.11434954,-115.180769 -36.11434188,-115.180769 -36.11433467,-115.180769 -36.11432701,-115.180769 -36.11431935,-115.180769 -36.11431215,-115.180769 -36.11430449,-115.180769 -36.11429683,-115.180769 -36.11428962,-115.180769 -36.11428196,-115.180769 -36.1142743,-115.180769 -36.11426709,-115.180769 -36.11425943,-115.180769 -36.11425177,-115.180769 -36.11424456,-115.1807691 -36.1142369,-115.1807692 -36.11422924,-115.1807694 -36.11422204,-115.1807695 -36.11421438,-115.1807696 -36.11420672,-115.1807697 -36.11419951,-115.1807698 -36.11419185,-115.1807699 -36.11418419,-115.18077 -36.11417698,-115.1807701 -36.11416932,-115.1807702 -36.11416166,-115.1807703 -36.11415446,-115.1807704 -36.1141468,-115.1807706 -36.11413914,-115.1807707 -36.11413193,-115.1807708 -36.11412427,-115.1807709 -36.11411661,-115.180771 -36.1141094,-115.1807711 -36.11410174,-115.1807712 -36.11409408,-115.1807713 -36.11408688,-115.1807714 -36.11407922,-115.1807715 -36.11407156,-115.1807716 -36.11406435,-115.1807718 -36.11405669,-115.1807719 -36.11404903,-115.180772 -36.11404182,-115.1807721 -36.11403416,-115.1807722 -36.1140265,-115.1807723 -36.1140193,-115.1807724 -36.11401164,-115.1807725 -36.11400398,-115.1807726 -36.11399677,-115.1807727 -36.11398911,-115.1807728 -36.11398145,-115.180773 -36.11397424,-115.1807731 -36.11396658,-115.1807732 -36.11395893,-115.1807733 -36.11395172,-115.1807734 -36.11394406,-115.1807735 -36.1139364,-115.1807736 -36.11392919,-115.1807737 -36.11392153,-115.1807738 -36.11391387,-115.1807739 -36.11390666,-115.180774 -36.113899,-115.1807741 -36.11389135,-115.1807743 -36.11388414,-115.1807744 -36.11387648,-115.1807745 -36.11386882,-115.1807746 -36.11386161,-115.1807747 -36.11385395,-115.1807748 -36.11384629,-115.1807749 -36.11383908,-115.180775 -36.11383142,-115.1807751 -36.11382377,-115.1807752 -36.11381656,-115.1807753 -36.1138089,-115.1807755 -36.11380124,-115.1807756 -36.11379403,-115.1807757 -36.11378637,-115.1807758 -36.11377871,-115.1807759 -36.1137715,-115.180776 -36.11376385,-115.1807761 -36.11375619,-115.1807762 -36.11374898,-115.1807763 -36.11374132,-115.1807764 -36.11373366,-115.1807765 -36.11372645,-115.1807767 -36.11371879,-115.1807768 -36.11371113,-115.1807769 -36.11370392,-115.180777 -36.11369627,-115.1807771 -36.11368861,-115.1807772 -36.1136814,-115.1807773 -36.11367374,-115.1807774 -36.11366608,-115.1807775 -36.11365887,-115.1807776 -36.11365121,-115.1807777 -36.11364355,-115.1807779 -36.11363635,-115.180778 -36.11362869,-115.1807781 -36.11362103,-115.1807782 -36.11361382,-115.1807783 -36.11360616,-115.1807784 -36.1135985,-115.1807785 -36.11359129,-115.1807786 -36.11358363,-115.1807787 -36.11357597,-115.1807788 -36.11356877,-115.1807789 -36.11356111,-115.180779 -36.11355345,-115.1807792 -36.11354624,-115.1807793 -36.11353858,-115.1807794 -36.11353092,-115.1807795 -36.11352371,-115.1807796 -36.11351605,-115.1807797 -36.11350839,-115.1807798 -36.11350119,-115.1807799 -36.11349353,-115.18078 -36.11348587,-115.1807801 -36.11347866,-115.1807802 -36.113471,-115.1807804 -36.11346334,-115.1807805 -36.11345613,-115.1807806 -36.11344847,-115.1807807 -36.11344081,-115.1807808 -36.11343361,-115.1807809 -36.11342595,-115.180781 -36.11341829,-115.1807811 -36.11341108,-115.1807812 -36.11340342,-115.1807813 -36.11339576,-115.1807814 -36.11338855,-115.1807816 -36.11338089,-115.1807817 -36.11337324,-115.1807818 -36.11336603,-115.1807819 -36.11335837,-115.180782 -36.11335071,-115.1807821 -36.1133435,-115.1807822 -36.11333584,-115.1807823 -36.11332818,-115.1807824 -36.11332097,-115.1807825 -36.11331331,-115.1807826 -36.11330566,-115.1807828 -36.11329845,-115.1807829 -36.11329079,-115.180783 -36.11328313,-115.1807831 -36.11327592,-115.1807832 -36.11326826,-115.1807833 -36.1132606,-115.1807834 -36.11325339,-115.1807835 -36.11324573,-115.1807836 -36.11323808,-115.1807837 -36.11323087,-115.1807838 -36.11322321,-115.180784 -36.11321555,-115.1807841 -36.11320834,-115.1807842 -36.11320068,-115.1807843 -36.11319302,-115.1807844 -36.11318581,-115.1807845 -36.11317816,-115.1807846 -36.1131705,-115.1807847 -36.11316329,-115.1807848 -36.11315563,-115.1807849 -36.11314797,-115.180785 -36.11314076,-115.1807851 -36.1131331,-115.1807853 -36.11312544,-115.1807854 -36.11311823,-115.1807855 -36.11311058,-115.1807856 -36.11310292,-115.1807857 -36.11309571,-115.1807858 -36.11308805,-115.1807859 -36.11308039,-115.180786 -36.11307318,-115.1807861 -36.11306552,-115.1807862 -36.11305786,-115.1807863 -36.11305065,-115.1807865 -36.113043,-115.1807866 -36.11303534,-115.1807867 -36.11302813,-115.1807868 -36.11302047,-115.1807869 -36.11301281,-115.180787 -36.1130056,-115.1807871 -36.11299794,-115.1807872 -36.11299028,-115.1807873 -36.11298308,-115.1807874 -36.11297542,-115.1807875 -36.11296776,-115.1807877 -36.11296055,-115.1807878 -36.11295289,-115.1807879 -36.11294523,-115.180788 -36.11293802,-115.1807881 -36.11293036,-115.1807882 -36.1129227,-115.1807883 -36.1129155,-115.1807884 -36.11290784,-115.1807885 -36.11290018,-115.1807886 -36.11289297,-115.1807887 -36.11288531,-115.1807889 -36.11287765,-115.180789 -36.11287044,-115.1807891 -36.11286278,-115.1807892 -36.11285512,-115.1807893 -36.11284792,-115.1807894 -36.11284026,-115.1807895 -36.1128326,-115.1807896 -36.11282539,-115.1807897 -36.11281773,-115.1807898 -36.11281007,-115.1807899 -36.11280286,-115.18079 -36.1127952,-115.1807902 -36.11278754,-115.1807903 -36.11278034,-115.1807904 -36.11277268,-115.1807905 -36.11276502,-115.1807906 -36.11275781,-115.1807907 -36.11275015,-115.1807908 -36.11274249,-115.1807909 -36.11273528,-115.180791 -36.11272762,-115.1807911 -36.11271997,-115.1807912 -36.11271276,-115.1807914 -36.1127051,-115.1807915 -36.11269744,-115.1807916 -36.11269023,-115.1807917 -36.11268257,-115.1807918 -36.11267491,-115.1807919 -36.1126677,-115.180792 -36.11266004,-115.1807921 -36.11265239,-115.1807922 -36.11264518,-115.1807923 -36.11263752,-115.1807924 -36.11262986,-115.1807926 -36.11262265,-115.1807927 -36.11261499,-115.1807928 -36.11260733,-115.1807929 -36.11260012,-115.180793 -36.11259246,-115.1807931 -36.11258481,-115.1807932 -36.1125776,-115.1807933 -36.11256994,-115.1807934 -36.11256228,-115.1807935 -36.11255507,-115.1807936 -36.11254741,-115.1807938 -36.11253975,-115.1807939 -36.11253254,-115.180794 -36.11252489,-115.1807941 -36.11251723,-115.1807942 -36.11251002,-115.1807943 -36.11250236,-115.1807944 -36.1124947,-115.1807945 -36.11248749,-115.1807946 -36.11247983,-115.1807947 -36.11247217,-115.1807948 -36.11246496,-115.1807949 -36.11245731,-115.1807951 -36.11244965,-115.1807952 -36.11244244,-115.1807953 -36.11243478,-115.1807954 -36.11242712,-115.1807955 -36.11241991,-115.1807956 -36.11241225,-115.1807957 -36.11240459,-115.1807958 -36.11239738,-115.1807959 -36.11238973,-115.180796 -36.11238207,-115.1807962 -36.11237486,-115.1807963 -36.1123672,-115.1807964 -36.11235954,-115.1807965 -36.11235233,-115.1807966 -36.11234467,-115.1807967 -36.11233701,-115.1807968 -36.11232981,-115.1807969 -36.11232215,-115.180797 -36.11231449,-115.1807971 -36.11230728,-115.1807972 -36.11229962,-115.1807973 -36.11229196,-115.1807975 -36.11228475,-115.1807976 -36.11227709,-115.1807977 -36.11226943,-115.1807978 -36.11226223,-115.1807979 -36.11225457,-115.180798 -36.11224691,-115.1807981 -36.1122397,-115.1807982 -36.11223204,-115.1807983 -36.11222438,-115.1807984 -36.11221717,-115.1807985 -36.11220951,-115.1807987 -36.11220185,-115.1807988 -36.11219465,-115.1807989 -36.11218699,-115.180799 -36.11217933,-115.1807991 -36.11217212,-115.1807992 -36.11216446,-115.1807993 -36.1121568,-115.1807994 -36.11214959,-115.1807995 -36.11214193,-115.1807996 -36.11213427,-115.1807997 -36.11212707,-115.1807998 -36.11211941,-115.1808 -36.11211175,-115.1808001 -36.11210454,-115.1808002 -36.11209688,-115.1808003 -36.11208922,-115.1808004 -36.11208201,-115.1808005 -36.11207435,-115.1808006 -36.1120667,-115.1808007 -36.11205949,-115.1808008 -36.11205183,-115.1808009 -36.11204417,-115.1808011 -36.11203696,-115.1808012 -36.1120293,-115.1808013 -36.11202164,-115.1808014 -36.11201443,-115.1808015 -36.11200677,-115.1808016 -36.11199912,-115.1808017 -36.11199191,-115.1808018 -36.11198425,-115.1808019 -36.11197659,-115.180802 -36.11196938,-115.1808021 -36.11196172,-115.1808022 -36.11195406,-115.1808024 -36.11194685,-115.1808025 -36.11193919,-115.1808026 -36.11193154,-115.1808027 -36.11192433,-115.1808028 -36.11191667,-115.1808029 -36.11190901,-115.180803 -36.1119018,-115.1808031 -36.11189414,-115.1808032 -36.11188648,-115.1808033 -36.11187927,-115.1808034 -36.11187162,-115.1808036 -36.11186396,-115.1808037 -36.11185675,-115.1808038 -36.11184909,-115.1808039 -36.11184143,-115.180804 -36.11183422,-115.1808041 -36.11182656,-115.1808042 -36.1118189,-115.1808043 -36.11181169,-115.1808044 -36.11180404,-115.1808045 -36.11179638,-115.1808046 -36.11178917,-115.1808048 -36.11178151,-115.1808049 -36.11177385,-115.180805 -36.11176664,-115.1808051 -36.11175898,-115.1808052 -36.11175132,-115.1808053 -36.11174411,-115.1808054 -36.11173646,-115.1808055 -36.1117288,-115.1808056 -36.11172159,-115.1808057 -36.11171393,-115.1808058 -36.11170627,-115.180806 -36.11169906,-115.1808061 -36.1116914,-115.1808062 -36.11168374,-115.1808063 -36.11167654,-115.1808064 -36.11166888,-115.1808065 -36.11166122,-115.1808066 -36.11165401,-115.1808067 -36.11164635,-115.1808068 -36.11163869,-115.1808069 -36.11163148,-115.180807 -36.11162382,-115.1808071 -36.11161616,-115.1808073 -36.11160896,-115.1808074 -36.1116013,-115.1808075 -36.11159364,-115.1808076 -36.11158643,-115.1808077 -36.11157877,-115.1808078 -36.11157111,-115.1808079 -36.1115639,-115.180808 -36.11155624,-115.1808081 -36.11154858,-115.1808082 -36.11154138,-115.1808083 -36.11153372,-115.1808085 -36.11152606,-115.1808086 -36.11151885,-115.1808087 -36.11151119,-115.1808088 -36.11150353,-115.1808089 -36.11149632,-115.180809 -36.11148866,-115.1808091 -36.111481,-115.1808092 -36.1114738,-115.1808093 -36.11146614,-115.1808094 -36.11145848,-115.1808095 -36.11145127,-115.1808097 -36.11144361,-115.1808098 -36.11143595,-115.1808099 -36.11142874,-115.18081 -36.11142108,-115.1808101 -36.11141342,-115.1808102 -36.11140622,-115.1808103 -36.11139856,-115.1808104 -36.1113909,-115.1808105 -36.11138369,-115.1808106 -36.11137603,-115.1808107 -36.11136837,-115.1808109 -36.11136116,-115.180811 -36.1113535,-115.1808111 -36.11134585,-115.1808112 -36.11133864,-115.1808113 -36.11133098,-115.1808114 -36.11132332,-115.1808115 -36.11131611,-115.1808116 -36.11130845,-115.1808117 -36.11130079,-115.1808118 -36.11129358,-115.1808119 -36.11128592,-115.180812 -36.11127827,-115.1808122 -36.11127106,-115.1808123 -36.1112634,-115.1808124 -36.11125574,-115.1808125 -36.11124853,-115.1808126 -36.11124087,-115.1808127 -36.11123321,-115.1808128 -36.111226,-115.1808129 -36.11121834,-115.180813 -36.11121069,-115.1808131 -36.11120348,-115.1808132 -36.11119582,-115.1808134 -36.11118816,-115.1808135 -36.11118095,-115.1808136 -36.11117329,-115.1808137 -36.11116563,-115.1808138 -36.11115842,-115.1808139 -36.11115077,-115.180814 -36.11114311,-115.1808141 -36.1111359,-115.1808142 -36.11112824,-115.1808143 -36.11112058,-115.1808144 -36.11111337,-115.1808146 -36.11110571,-115.1808147 -36.11109805,-115.1808148 -36.11109084,-115.1808149 -36.11108319,-115.180815 -36.11107553,-115.1808151 -36.11106832,-115.1808152 -36.11106066,-115.1808153 -36.111053,-115.1808154 -36.11104579,-115.1808155 -36.11103813,-115.1808156 -36.11103047,-115.1808158 -36.11102326,-115.1808159 -36.11101561,-115.180816 -36.11100795,-115.1808161 -36.11100074,-115.1808162 -36.11099308,-115.1808163 -36.11098542,-115.1808164 -36.11097821,-115.1808165 -36.11097055,-115.1808166 -36.11096289,-115.1808167 -36.11095569,-115.1808168 -36.11094803,-115.180817 -36.11094037,-115.1808171 -36.11093316,-115.1808172 -36.1109255,-115.1808173 -36.11091784,-115.1808174 -36.11091063,-115.1808175 -36.11090297,-115.1808176 -36.11089531,-115.1808177 -36.11088811,-115.1808178 -36.11088045,-115.1808179 -36.11087279,-115.180818 -36.11086558,-115.1808181 -36.11085792,-115.1808183 -36.11085026,-115.1808184 -36.11084305,-115.1808185 -36.11083539,-115.1808186 -36.11082773,-115.1808187 -36.11082053,-115.1808188 -36.11081287,-115.1808189 -36.11080521,-115.180819 -36.110798,-115.1808191 -36.11079034,-115.1808192 -36.11078268,-115.1808193 -36.11077547,-115.1808195 -36.11076781,-115.1808196 -36.11076015,-115.1808197 -36.11075295,-115.1808198 -36.11074529,-115.1808199 -36.11073763,-115.18082 -36.11073042,-115.1808201 -36.11072276,-115.1808202 -36.1107151,-115.1808203 -36.11070789,-115.1808204 -36.11070023,-115.1808205 -36.11069257,-115.1808207 -36.11068537,-115.1808208 -36.11067771,-115.1808209 -36.11067005,-115.180821 -36.11066284,-115.1808211 -36.11065518,-115.1808212 -36.11064752,-115.1808213 -36.11064031,-115.1808214 -36.11063265,-115.1808215 -36.110625,-115.1808216 -36.11061779,-115.1808217 -36.11061013,-115.1808219 -36.11060247,-115.180822 -36.11059526,-115.1808221 -36.1105876,-115.1808222 -36.11057994,-115.1808223 -36.11057273,-115.1808224 -36.11056507,-115.1808225 -36.11055742,-115.1808226 -36.11055021,-115.1808227 -36.11054255,-115.1808228 -36.11053489,-115.1808229 -36.11052768,-115.180823 -36.11052002,-115.1808232 -36.11051236,-115.1808233 -36.11050515,-115.1808234 -36.11049749,-115.1808235 -36.11048984,-115.1808236 -36.11048263,-115.1808237 -36.11047497,-115.1808238 -36.11046731,-115.1808239 -36.1104601,-115.180824 -36.11045244,-115.1808241 -36.11044478,-115.1808242 -36.11043757,-115.1808243 -36.11042991,-115.1808244 -36.11042226,-115.1808244 -36.11041505,-115.1808245 -36.11040739,-115.1808246 -36.11039973,-115.1808247 -36.11039252,-115.1808248 -36.11038486,-115.1808249 -36.1103772,-115.1808249 -36.11036999,-115.180825 -36.11036233,-115.1808251 -36.11035467,-115.1808252 -36.11034746,-115.1808253 -36.11033981,-115.1808254 -36.11033215,-115.1808254 -36.11032494,-115.1808255 -36.11031728,-115.1808256 -36.11030962,-115.1808257 -36.11030241,-115.1808258 -36.11029475,-115.1808259 -36.11028709,-115.1808259 -36.11027988,-115.180826 -36.11027222,-115.1808261 -36.11026456,-115.1808262 -36.11025736,-115.1808263 -36.1102497,-115.1808264 -36.11024204,-115.1808264 -36.11023483,-115.1808265 -36.11022717,-115.1808266 -36.11021951,-115.1808267 -36.1102123,-115.1808268 -36.11020464,-115.1808269 -36.11019698,-115.1808269 -36.11018977,-115.180827 -36.11018211,-115.1808271 -36.11017446,-115.1808272 -36.11016725,-115.1808273 -36.11015959,-115.1808274 -36.11015193,-115.1808274 -36.11014472,-115.1808275 -36.11013706,-115.1808276 -36.1101294,-115.1808277 -36.11012219,-115.1808278 -36.11011453,-115.1808279 -36.11010687,-115.1808279 -36.11009967,-115.180828 -36.11009201,-115.1808281 -36.11008435,-115.1808282 -36.11007714,-115.1808283 -36.11006948,-115.1808284 -36.11006182,-115.1808284 -36.11005461,-115.1808285 -36.11004695,-115.1808286 -36.11003929,-115.1808287 -36.11003208,-115.1808288 -36.11002442,-115.1808289 -36.11001677,-115.1808289 -36.11000956,-115.180829 -36.1100019,-115.1808291 -36.10999424,-115.1808292 -36.10998703,-115.1808293 -36.10997937,-115.1808294 -36.10997171,-115.1808294 -36.1099645,-115.1808295 -36.10995684,-115.1808296 -36.10994918,-115.1808297 -36.10994197,-115.1808298 -36.10993432,-115.1808298 -36.10992666,-115.1808299 -36.10991945,-115.18083 -36.10991179,-115.1808301 -36.10990413,-115.1808302 -36.10989692,-115.1808303 -36.10988926,-115.1808303 -36.1098816,-115.1808304 -36.10987439,-115.1808305 -36.10986673,-115.1808306 -36.10985907,-115.1808307 -36.10985187,-115.1808308 -36.10984421,-115.1808308 -36.10983655,-115.1808309 -36.10982934,-115.180831 -36.10982168,-115.1808311 -36.10981402,-115.1808312 -36.10980681,-115.1808313 -36.10979915,-115.1808313 -36.10979149,-115.1808314 -36.10978428,-115.1808315 -36.10977662,-115.1808316 -36.10976897,-115.1808317 -36.10976176,-115.1808318 -36.1097541,-115.1808318 -36.10974644,-115.1808319 -36.10973923,-115.180832 -36.10973157,-115.1808321 -36.10972391,-115.1808322 -36.1097167,-115.1808323 -36.10970904,-115.1808323 -36.10970138,-115.1808324 -36.10969418,-115.1808325 -36.10968652,-115.1808326 -36.10967886,-115.1808327 -36.10967165,-115.1808328 -36.10966399,-115.1808328 -36.10965633,-115.1808329 -36.10964912,-115.180833 -36.10964146,-115.1808331 -36.1096338,-115.1808332 -36.10962659,-115.1808333 -36.10961893,-115.1808333 -36.10961128,-115.1808334 -36.10960407,-115.1808335 -36.10959641,-115.1808336 -36.10958875,-115.1808337 -36.10958154,-115.1808338 -36.10957388,-115.1808338 -36.10956622,-115.1808339 -36.10955901,-115.180834 -36.10955135,-115.1808341 -36.10954369,-115.1808342 -36.10953648,-115.1808343 -36.10952883,-115.1808343 -36.10952117,-115.1808344 -36.10951396,-115.1808345 -36.1095063,-115.1808346 -36.10949864,-115.1808347 -36.10949143,-115.1808348 -36.10948377,-115.1808348 -36.10947611,-115.1808349 -36.1094689,-115.180835 -36.10946124,-115.1808351 -36.10945358,-115.1808352 -36.10944638,-115.1808353 -36.10943872,-115.1808353 -36.10943106,-115.1808354 -36.10942385,-115.1808355 -36.10941619,-115.1808356 -36.10940853,-115.1808357 -36.10940132,-115.1808358 -36.10939366,-115.1808358 -36.109386,-115.1808359 -36.10937879,-115.180836 -36.10937113,-115.1808361 -36.10936348,-115.1808362 -36.10935627,-115.1808363 -36.10934861,-115.1808363 -36.10934095,-115.1808364 -36.10933374,-115.1808365 -36.10932608,-115.1808366 -36.10931842,-115.1808367 -36.10931121,-115.1808368 -36.10930355,-115.1808368 -36.10929589,-115.1808369 -36.10928869,-115.180837 -36.10928103,-115.1808371 -36.10927337,-115.1808372 -36.10926616,-115.1808373 -36.1092585,-115.1808373 -36.10925084,-115.1808374 -36.10924363,-115.1808375 -36.10923597,-115.1808376 -36.10922831,-115.1808377 -36.1092211,-115.1808378 -36.10921344,-115.1808378 -36.10920579,-115.1808379 -36.10919858,-115.180838 -36.10919092,-115.1808381 -36.10918326,-115.1808382 -36.10917605,-115.1808383 -36.10916839,-115.1808383 -36.10916073,-115.1808384 -36.10915352,-115.1808385 -36.10914586,-115.1808386 -36.1091382,-115.1808387 -36.10913099,-115.1808388 -36.10912334,-115.1808388 -36.10911568,-115.1808389 -36.10910847,-115.180839 -36.10910081,-115.1808391 -36.10909315,-115.1808392 -36.10908594,-115.1808393 -36.10907828,-115.1808393 -36.10907062,-115.1808394 -36.10906341,-115.1808395 -36.10905575,-115.1808396 -36.10904809,-115.1808397 -36.10904089,-115.1808398 -36.10903323,-115.1808398 -36.10902557,-115.1808399 -36.10901836,-115.18084 -36.1090107,-115.1808401 -36.10900304,-115.1808402 -36.10899583,-115.1808403 -36.10898817,-115.1808403 -36.10898051,-115.1808404 -36.1089733,-115.1808405 -36.10896564,-115.1808406 -36.10895799,-115.1808407 -36.10895078,-115.1808408 -36.10894312,-115.1808408 -36.10893546,-115.1808409 -36.10892825,-115.180841 -36.10892059,-115.1808411 -36.10891293,-115.1808412 -36.10890572,-115.1808413 -36.10889806,-115.1808413 -36.1088904,-115.1808414 -36.1088832,-115.1808415 -36.10887554,-115.1808416 -36.10886788,-115.1808417 -36.10886067,-115.1808418 -36.10885301,-115.1808418 -36.10884535,-115.1808419 -36.10883814,-115.180842 -36.10883048,-115.1808421 -36.10882282,-115.1808422 -36.10881561,-115.1808423 -36.10880795,-115.1808423 -36.10880029,-115.1808424 -36.10879309,-115.1808425 -36.10878543,-115.1808426 -36.10877777,-115.1808427 -36.10877056,-115.1808427 -36.1087629,-115.1808428 -36.10875524,-115.1808429 -36.10874803,-115.180843 -36.10874037,-115.1808431 -36.10873271,-115.1808432 -36.1087255,-115.1808432 -36.10871785,-115.1808433 -36.10871019,-115.1808434 -36.10870298,-115.1808435 -36.10869532,-115.1808436 -36.10868766,-115.1808437 -36.10868045,-115.1808437 -36.10867279,-115.1808438 -36.10866513,-115.1808439 -36.10865792,-115.180844 -36.10865026,-115.1808441 -36.1086426,-115.1808442 -36.1086354,-115.1808442 -36.10862774,-115.1808443 -36.10862008,-115.1808444 -36.10861287,-115.1808445 -36.10860521,-115.1808446 -36.10859755,-115.1808447 -36.10859034,-115.1808447 -36.10858268,-115.1808448 -36.10857502,-115.1808449 -36.10856781,-115.180845 -36.10856015,-115.1808451 -36.1085525,-115.1808452 -36.10854529,-115.1808452 -36.10853763,-115.1808453 -36.10852997,-115.1808454 -36.10852276,-115.1808455 -36.1085151,-115.1808456 -36.10850744,-115.1808457 -36.10850023,-115.1808457 -36.10849257,-115.1808458 -36.10848491,-115.1808459 -36.10847771,-115.180846 -36.10847005,-115.1808461 -36.10846239,-115.1808462 -36.10845518,-115.1808462 -36.10844752,-115.1808463 -36.10843986,-115.1808464 -36.10843265,-115.1808465 -36.10842499,-115.1808466 -36.10841733,-115.1808467 -36.10841012,-115.1808467 -36.10840246,-115.1808468 -36.1083948,-115.1808469 -36.1083876,-115.180847 -36.10837994,-115.1808471 -36.10837228,-115.1808472 -36.10836507,-115.1808472 -36.10835741,-115.1808473 -36.10834975,-115.1808474 -36.10834254,-115.1808475 -36.10833488,-115.1808476 -36.10832722,-115.1808477 -36.10832001,-115.1808477 -36.10831236,-115.1808478 -36.1083047,-115.1808479 -36.10829749,-115.180848 -36.10828983,-115.1808481 -36.10828217,-115.1808482 -36.10827496,-115.1808482 -36.1082673,-115.1808483 -36.10825964,-115.1808484 -36.10825243,-115.1808485 -36.10824477,-115.1808486 -36.10823711,-115.1808487 -36.10822991,-115.1808487 -36.10822225,-115.1808488 -36.10821459,-115.1808489 -36.10820738,-115.180849 -36.10819972,-115.1808491 -36.10819206,-115.1808492 -36.10818485,-115.1808492 -36.10817719,-115.1808493 -36.10816953,-115.1808494 -36.10816232,-115.1808495 -36.10815466,-115.1808496 -36.10814701,-115.1808497 -36.1081398,-115.1808497 -36.10813214,-115.1808498 -36.10812448,-115.1808499 -36.10811727,-115.18085 -36.10810961,-115.1808501 -36.10810195,-115.1808502 -36.10809474,-115.1808502 -36.10808708,-115.1808503 -36.10807942,-115.1808504 -36.10807221,-115.1808505 -36.10806456,-115.1808506 -36.1080569,-115.1808507 -36.10804969,-115.1808507 -36.10804203,-115.1808508 -36.10803437,-115.1808509 -36.10802716,-115.180851 -36.1080195,-115.1808511 -36.10801184,-115.1808512 -36.10800463,-115.1808512 -36.10799697,-115.1808513 -36.10798931,-115.1808514 -36.10798211,-115.1808515 -36.10797445,-115.1808516 -36.10796679,-115.1808517 -36.10795958,-115.1808517 -36.10795192,-115.1808518 -36.10794426,-115.1808519 -36.10793705,-115.180852 -36.10792939,-115.1808521 -36.10792173,-115.1808522 -36.10791452,-115.1808522 -36.10790686,-115.1808523 -36.10789921,-115.1808524 -36.107892,-115.1808525 -36.10788434,-115.1808526 -36.10787668,-115.1808527 -36.10786947,-115.1808527 -36.10786181,-115.1808528 -36.10785415,-115.1808529 -36.10784694,-115.180853 -36.10783928,-115.1808531 -36.10783162,-115.1808532 -36.10782442,-115.1808532 -36.10781676,-115.1808533 -36.1078091,-115.1808534 -36.10780189,-115.1808535 -36.10779423,-115.1808536 -36.10778657,-115.1808537 -36.10777936,-115.1808537 -36.1077717,-115.1808538 -36.10776404,-115.1808539 -36.10775683,-115.180854 -36.10774917,-115.1808541 -36.10774152,-115.1808542 -36.10773431,-115.1808542 -36.10772665,-115.1808543 -36.10771899,-115.1808544 -36.10771178,-115.1808545 -36.10770412,-115.1808546 -36.10769646,-115.1808547 -36.10768925,-115.1808547 -36.10768159,-115.1808548 -36.10767393,-115.1808549 -36.10766672,-115.180855 -36.10765907,-115.1808551 -36.10765141,-115.1808552 -36.1076442,-115.1808552 -36.10763654,-115.1808553 -36.10762888,-115.1808554 -36.10762167,-115.1808555 -36.10761401,-115.1808556 -36.10760635,-115.1808557 -36.10759914,-115.1808557 -36.10759148,-115.1808558 -36.10758382,-115.1808559 -36.10757662,-115.180856 -36.10756896,-115.1808561 -36.1075613,-115.1808562 -36.10755409,-115.1808562 -36.10754643,-115.1808563 -36.10753877,-115.1808564 -36.10753156,-115.1808565 -36.1075239,-115.1808566 -36.10751624,-115.1808567 -36.10750903,-115.1808567 -36.10750137,-115.1808568 -36.10749372,-115.1808569 -36.10748651,-115.180857 -36.10747885,-115.1808571 -36.10747119,-115.1808572 -36.10746398,-115.1808572 -36.10745632,-115.1808573 -36.10744866,-115.1808574 -36.10744145,-115.1808575 -36.10743379,-115.1808576 -36.10742613,-115.1808577 -36.10741893,-115.1808577 -36.10741127,-115.1808578 -36.10740361,-115.1808579 -36.1073964,-115.180858 -36.10738874,-115.1808581 -36.10738108,-115.1808582 -36.10737387,-115.1808582 -36.10736621,-115.1808583 -36.10735855,-115.1808584 -36.10735134,-115.1808585 -36.10734368,-115.1808586 -36.10733602,-115.1808587 -36.10732882,-115.1808587 -36.10732116,-115.1808588 -36.1073135,-115.1808589 -36.10730629,-115.180859 -36.10729863,-115.1808591 -36.10729097,-115.1808592 -36.10728376,-115.1808592 -36.1072761,-115.1808593 -36.10726844,-115.1808594 -36.10726123,-115.1808595 -36.10725358,-115.1808596 -36.10724592,-115.1808597 -36.10723871,-115.1808597 -36.10723105,-115.1808598 -36.10722339,-115.1808599 -36.10721618,-115.18086 -36.10720852,-115.1808601 -36.10720086,-115.1808602 -36.10719365,-115.1808602 -36.10718599,-115.1808603 -36.10717833,-115.1808604 -36.10717113,-115.1808605 -36.10716347,-115.1808606 -36.10715581,-115.1808606 -36.1071486,-115.1808607 -36.10714094,-115.1808608 -36.10713328,-115.1808609 -36.10712607,-115.180861 -36.10711841,-115.1808611 -36.10711075,-115.1808611 -36.10710354,-115.1808612 -36.10709588,-115.1808613 -36.10708823,-115.1808614 -36.10708102,-115.1808615 -36.10707336,-115.1808616 -36.1070657,-115.1808616 -36.10705849,-115.1808617 -36.10705083,-115.1808618 -36.10704317,-115.1808619 -36.10703596,-115.180862 -36.1070283,-115.1808621 -36.10702064,-115.1808621 -36.10701343,-115.1808622 -36.10700578,-115.1808623 -36.10699812,-115.1808624 -36.10699091,-115.1808625 -36.10698325,-115.1808626 -36.10697559,-115.1808626 -36.10696838,-115.1808627 -36.10696072,-115.1808628 -36.10695306,-115.1808629 -36.10694585,-115.180863 -36.10693819,-115.1808631 -36.10693053,-115.1808631 -36.10692333,-115.1808632 -36.10691567,-115.1808633 -36.10690801,-115.1808634 -36.1069008,-115.1808635 -36.10689314,-115.1808636 -36.10688548,-115.1808636 -36.10687827,-115.1808637 -36.10687061,-115.1808638 -36.10686295,-115.1808639 -36.10685574,-115.180864 -36.10684808,-115.1808641 -36.10684043,-115.1808641 -36.10683322,-115.1808642 -36.10682556,-115.1808643 -36.1068179,-115.1808644 -36.10681069,-115.1808645 -36.10680303,-115.1808646 -36.10679537,-115.1808646 -36.10678816,-115.1808647 -36.1067805,-115.1808648 -36.10677284,-115.1808649 -36.10676564,-115.180865 -36.10675798,-115.1808651 -36.10675032,-115.1808651 -36.10674311,-115.1808652 -36.10673545,-115.1808653 -36.10672779,-115.1808654 -36.10672058,-115.1808655 -36.10671292,-115.1808656 -36.10670526,-115.1808656 -36.10669805,-115.1808657 -36.10669039,-115.1808658 -36.10668273,-115.1808659 -36.10667553,-115.180866 -36.10666787,-115.1808661 -36.10666021,-115.1808661 -36.106653,-115.1808662 -36.10664534,-115.1808663 -36.10663768,-115.1808664 -36.10663047,-115.1808665 -36.10662281,-115.1808666 -36.10661515,-115.1808666 -36.10660794,-115.1808667 -36.10660029,-115.1808668 -36.10659263,-115.1808669 -36.10658542,-115.180867 -36.10657776,-115.1808671 -36.1065701,-115.1808671 -36.10656289,-115.1808672 -36.10655523,-115.1808673 -36.10654757,-115.1808674 -36.10654036,-115.1808675 -36.1065327,-115.1808676 -36.10652504,-115.1808676 -36.10651784,-115.1808677 -36.10651018,-115.1808678 -36.10650252,-115.1808679 -36.10649531,-115.180868 -36.10648765,-115.1808681 -36.10647999,-115.1808681 -36.10647278,-115.1808682 -36.10646512,-115.1808683 -36.10645746,-115.1808684 -36.10645025,-115.1808685 -36.10644259,-115.1808686 -36.10643494,-115.1808686 -36.10642773,-115.1808687 -36.10642007,-115.1808688 -36.10641241,-115.1808689 -36.1064052,-115.180869 -36.10639754,-115.1808691 -36.10638988,-115.1808691 -36.10638267,-115.1808692 -36.10637501,-115.1808693 -36.10636735,-115.1808694 -36.10636014,-115.1808695 -36.10635249,-115.1808696 -36.10634483,-115.1808696 -36.10633762,-115.1808697 -36.10632996,-115.1808698 -36.1063223,-115.1808699 -36.10631509,-115.18087 -36.10630743,-115.1808701 -36.10629977,-115.1808701 -36.10629256,-115.1808702 -36.1062849,-115.1808703 -36.10627724,-115.1808704 -36.10627004,-115.1808705 -36.10626238,-115.1808706 -36.10625472,-115.1808706 -36.10624751,-115.1808707 -36.10623985,-115.1808708 -36.10623219,-115.1808709 -36.10622498,-115.180871 -36.10621732,-115.1808711 -36.10620966,-115.1808711 -36.10620245,-115.1808712 -36.10619479,-115.1808713 -36.10618714,-115.1808714 -36.10617993,-115.1808715 -36.10617227,-115.1808716 -36.10616461,-115.1808716 -36.1061574,-115.1808717 -36.10614974,-115.1808718 -36.10614208,-115.1808719 -36.10613487,-115.180872 -36.10612721,-115.1808721 -36.10611955,-115.1808721 -36.10611234,-115.1808722 -36.10610469,-115.1808723 -36.10609703,-115.1808724 -36.10608982,-115.1808725 -36.10608216,-115.1808726 -36.1060745,-115.1808726 -36.10606729,-115.1808727 -36.10605963,-115.1808728 -36.10605197,-115.1808729 -36.10604476,-115.180873 -36.1060353,-115.1808731 -36.10602539,-115.1808732 -36.10601593,-115.1808733 -36.10600692,-115.1808734 -36.10599701,-115.1808735 -36.10598754,-115.1808736 -36.10597808,-115.1808737 -36.10596817,-115.1808738 -36.10595781,-115.1808739 -36.1059479,-115.180874 -36.10593843,-115.1808741 -36.10592852,-115.1808743 -36.10591861,-115.1808744 -36.10590239,-115.1808745 -36.10589248,-115.1808747 -36.10588302,-115.1808748 -36.10587356,-115.1808749 -36.10586364,-115.180875 -36.10585373,-115.1808751 -36.10584382,-115.1808752 -36.10583301,-115.1808753 -36.10582355,-115.1808754 -36.10581318,-115.1808755 -36.10580282,-115.1808756 -36.10579336,-115.1808758 -36.10578435,-115.1808759 -36.10577534,-115.180876 -36.10576002,-115.1808761 -36.10575101,-115.1808762 -36.10574155,-115.1808763 -36.10573208,-115.1808764 -36.10572262,-115.1808765 -36.10571316,-115.1808766 -36.1057037,-115.1808767 -36.10569469,-115.1808768 -36.10568568,-115.1808769 -36.10567577,-115.1808771 -36.10566676,-115.1808772 -36.1056582,-115.1808773 -36.10564964,-115.1808773 -36.10564062,-115.1808774 -36.10563206,-115.1808775 -36.10561719,-115.1808777 -36.10560683,-115.1808778 -36.10559917,-115.1808779 -36.10559016,-115.180878 -36.1055807,-115.1808781 -36.10557259,-115.1808782 -36.10556448,-115.1808783 -36.10555637,-115.1808784 -36.10554826,-115.1808785 -36.10553925,-115.1808786 -36.10553159,-115.1808787 -36.10552303,-115.1808787 -36.10551492,-115.1808788 -36.10550771,-115.1808789 -36.10550005,-115.180879 -36.10549239,-115.1808791 -36.10548519,-115.1808792 -36.10547753,-115.1808793 -36.10546987,-115.1808793 -36.10546266,-115.1808794 -36.105455,-115.1808795 -36.10544734,-115.1808796 -36.10544013,-115.1808797 -36.10543247,-115.1808798 -36.10542481,-115.1808798 -36.1054176,-115.1808799 -36.10540995,-115.18088 -36.10540229,-115.1808801 -36.10539508,-115.1808802 -36.10538742,-115.1808803 -36.10537976,-115.1808803 -36.10537255,-115.1808804 -36.10536489,-115.1808805 -36.10535723,-115.1808806 -36.10535002,-115.1808807 -36.10534236,-115.1808808 -36.1053347,-115.1808808 -36.1053275,-115.1808809 -36.10531984,-115.180881 -36.10531218,-115.180881 -36.10530497,-115.1808809 -36.10529731,-115.1808809 -36.10528965,-115.1808808 -36.10528244,-115.1808808 -36.10527478,-115.1808807 -36.10526712,-115.1808807 -36.10525991,-115.1808806 -36.10525225,-115.1808806 -36.10524459,-115.1808805 -36.10523738,-115.1808805 -36.10522972,-115.1808804 -36.10522207,-115.1808804 -36.10521486,-115.1808804 -36.1052072,-115.1808803 -36.10519954,-115.1808803 -36.10519233,-115.1808802 -36.10518467,-115.1808802 -36.10517701,-115.1808801 -36.1051698,-115.1808801 -36.10516214,-115.18088 -36.10515448,-115.18088 -36.10514727,-115.1808799 -36.10513961,-115.1808799 -36.10513195,-115.1808798 -36.10512474,-115.1808798 -36.10511709,-115.1808798 -36.10510943,-115.1808797 -36.10510222,-115.1808797 -36.10509456,-115.1808796 -36.1050869,-115.1808796 -36.10507969,-115.1808795 -36.10507203,-115.1808795 -36.10506437,-115.1808794 -36.10505716,-115.1808794 -36.1050495,-115.1808793 -36.10504184,-115.1808793 -36.10503463,-115.1808792 -36.10502697,-115.1808792 -36.10501931,-115.1808792 -36.10501211,-115.1808791 -36.10500445,-115.1808791 -36.10499679,-115.180879 -36.10498958,-115.180879 -36.10498192,-115.1808789 -36.10497426,-115.1808789 -36.10496705,-115.1808788 -36.10495939,-115.1808788 -36.10495173,-115.1808787 -36.10494452,-115.1808787 -36.10493686,-115.1808786 -36.1049292,-115.1808786 -36.10492199,-115.1808786 -36.10491433,-115.1808785 -36.10490667,-115.1808785 -36.10489947,-115.1808784 -36.10489181,-115.1808784 -36.10488415,-115.1808783 -36.10487694,-115.1808783 -36.10486928,-115.1808782 -36.10486162,-115.1808782 -36.10485441,-115.1808781 -36.10484675,-115.1808781 -36.10483909,-115.1808781 -36.10483188,-115.180878 -36.10482422,-115.180878 -36.10481656,-115.1808779 -36.10480935,-115.1808779 -36.10480169,-115.1808778 -36.10479404,-115.1808778 -36.10478683,-115.1808777 -36.10477917,-115.1808777 -36.10477151,-115.1808776 -36.1047643,-115.1808776 -36.10475664,-115.1808775 -36.10474898,-115.1808775 -36.10474177,-115.1808775 -36.10473411,-115.1808774 -36.10472645,-115.1808774 -36.10471924,-115.1808773 -36.10471158,-115.1808773 -36.10470392,-115.1808772 -36.10469671,-115.1808772 -36.10468906,-115.1808771 -36.1046814,-115.1808771 -36.10467419,-115.180877 -36.10466653,-115.180877 -36.10465887,-115.1808769 -36.10465166,-115.1808769 -36.104644,-115.1808769 -36.10463634,-115.1808768 -36.10462913,-115.1808768 -36.10462147,-115.1808767 -36.10461381,-115.1808767 -36.1046066,-115.1808766 -36.10459894,-115.1808766 -36.10459128,-115.1808765 -36.10458408,-115.1808765 -36.10457642,-115.1808764 -36.10456876,-115.1808764 -36.10456155,-115.1808763 -36.10455389,-115.1808763 -36.10454623,-115.1808763 -36.10453902,-115.1808762 -36.10453136,-115.1808762 -36.1045237,-115.1808761 -36.10451649,-115.1808761 -36.10450883,-115.180876 -36.10450117,-115.180876 -36.10449396,-115.1808759 -36.1044863,-115.1808759 -36.10447864,-115.1808758 -36.10447144,-115.1808758 -36.10446378,-115.1808757 -36.10445612,-115.1808757 -36.10444891,-115.1808757 -36.10444125,-115.1808756 -36.10443359,-115.1808756 -36.10442638,-115.1808755 -36.10441872,-115.1808755 -36.10441106,-115.1808754 -36.10440385,-115.1808754 -36.10439619,-115.1808753 -36.10438853,-115.1808753 -36.10438132,-115.1808752 -36.10437366,-115.1808752 -36.10436601,-115.1808751 -36.1043588,-115.1808751 -36.10435114,-115.1808751 -36.10434348,-115.180875 -36.10433627,-115.180875 -36.10432861,-115.1808749 -36.10432095,-115.1808749 -36.10431374,-115.1808748 -36.10430608,-115.1808748 -36.10429842,-115.1808747 -36.10429121,-115.1808747 -36.10428355,-115.1808746 -36.10427589,-115.1808746 -36.10426868,-115.1808746 -36.10426103,-115.1808745 -36.10425337,-115.1808745 -36.10424616,-115.1808744 -36.1042385,-115.1808744 -36.10423084,-115.1808743 -36.10422363,-115.1808743 -36.10421597,-115.1808742 -36.10420831,-115.1808742 -36.1042011,-115.1808741 -36.10419344,-115.1808741 -36.10418578,-115.180874 -36.10417857,-115.180874 -36.10417091,-115.180874 -36.10416325,-115.1808739 -36.10415605,-115.1808739 -36.10414839,-115.1808738 -36.10414073,-115.1808738 -36.10413352,-115.1808737 -36.10412586,-115.1808737 -36.1041182,-115.1808736 -36.10411099,-115.1808736 -36.10410333,-115.1808735 -36.10409567,-115.1808735 -36.10408846,-115.1808734 -36.1040808,-115.1808734 -36.10407314,-115.1808734 -36.10406593,-115.1808733 -36.10405827,-115.1808733 -36.10405061,-115.1808732 -36.10404341,-115.1808732 -36.10403575,-115.1808731 -36.10402809,-115.1808731 -36.10402088,-115.180873 -36.10401322,-115.180873 -36.10400556,-115.1808729 -36.10399835,-115.1808729 -36.10399069,-115.1808728 -36.10398303,-115.1808728 -36.10397582,-115.1808728 -36.10396816,-115.1808727 -36.1039605,-115.1808727 -36.10395329,-115.1808726 -36.10394563,-115.1808726 -36.10393798,-115.1808725 -36.10393077,-115.1808725 -36.10392311,-115.1808724 -36.10391545,-115.1808724 -36.10390824,-115.1808723 -36.10390058,-115.1808723 -36.10389292,-115.1808722 -36.10388571,-115.1808722 -36.10387805,-115.1808722 -36.10387039,-115.1808721 -36.10386318,-115.1808721 -36.10385552,-115.180872 -36.10384786,-115.180872 -36.10384065,-115.1808719 -36.103833,-115.1808719 -36.10382534,-115.1808718 -36.10381813,-115.1808718 -36.10381047,-115.1808717 -36.10380281,-115.1808717 -36.1037956,-115.1808716 -36.10378794,-115.1808716 -36.10378028,-115.1808716 -36.10377307,-115.1808715 -36.10376541,-115.1808715 -36.10375775,-115.1808714 -36.10375054,-115.1808714 -36.10374288,-115.1808713 -36.10373522,-115.1808713 -36.10372802,-115.1808712 -36.10372036,-115.1808712 -36.1037127,-115.1808711 -36.10370549,-115.1808711 -36.10369783,-115.1808711 -36.10369017,-115.180871 -36.10368296,-115.180871 -36.1036753,-115.1808709 -36.10366764,-115.1808709 -36.10366043,-115.1808708 -36.10365277,-115.1808708 -36.10364511,-115.1808707 -36.1036379,-115.1808707 -36.10363024,-115.1808706 -36.10362258,-115.1808706 -36.10361538,-115.1808705 -36.10360772,-115.1808705 -36.10360006,-115.1808705 -36.10359285,-115.1808704 -36.10358519,-115.1808704 -36.10357753,-115.1808703 -36.10357032,-115.1808703 -36.10356266,-115.1808702 -36.103555,-115.1808702 -36.10354779,-115.1808701 -36.10354013,-115.1808701 -36.10353247,-115.18087 -36.10352526,-115.18087 -36.1035176,-115.1808699 -36.10350995,-115.1808699 -36.10350274,-115.1808699 -36.10349508,-115.1808698 -36.10348742,-115.1808698 -36.10348021,-115.1808697 -36.10347255,-115.1808697 -36.10346489,-115.1808696 -36.10345768,-115.1808696 -36.10345002,-115.1808695 -36.10344236,-115.1808695 -36.10343515,-115.1808694 -36.10342749,-115.1808694 -36.10341983,-115.1808693 -36.10341262,-115.1808693 -36.10340497,-115.1808693 -36.10339731,-115.1808692 -36.1033901,-115.1808692 -36.10338244,-115.1808691 -36.10337478,-115.1808691 -36.10336757,-115.180869 -36.10335991,-115.180869 -36.10335225,-115.1808689 -36.10334504,-115.1808689 -36.10333738,-115.1808688 -36.10332972,-115.1808688 -36.10332251,-115.1808687 -36.10331485,-115.1808687 -36.10330719,-115.1808687 -36.10329999,-115.1808686 -36.10329233,-115.1808686 -36.10328467,-115.1808685 -36.10327746,-115.1808685 -36.1032698,-115.1808684 -36.10326214,-115.1808684 -36.10325493,-115.1808683 -36.10324727,-115.1808683 -36.10323961,-115.1808682 -36.1032324,-115.1808682 -36.10322474,-115.1808681 -36.10321708,-115.1808681 -36.10320987,-115.1808681 -36.10320221,-115.180868 -36.10319455,-115.180868 -36.10318735,-115.1808679 -36.10317969,-115.1808679 -36.10317203,-115.1808678 -36.10316482,-115.1808678 -36.10315716,-115.1808677 -36.1031495,-115.1808677 -36.10314229,-115.1808676 -36.10313463,-115.1808676 -36.10312697,-115.1808675 -36.10311976,-115.1808675 -36.1031121,-115.1808675 -36.10310444,-115.1808674 -36.10309723,-115.1808674 -36.10308957,-115.1808673 -36.10308191,-115.1808673 -36.10307471,-115.1808672 -36.10306705,-115.1808672 -36.10305939,-115.1808671 -36.10305218,-115.1808671 -36.10304452,-115.180867 -36.10303686,-115.180867 -36.10302965,-115.180867 -36.10302199,-115.1808669 -36.10301433,-115.1808669 -36.10300712,-115.1808668 -36.10299946,-115.1808668 -36.1029918,-115.1808667 -36.10298459,-115.1808667 -36.10297693,-115.1808666 -36.10296928,-115.1808666 -36.10296207,-115.1808665 -36.10295441,-115.1808665 -36.10294675,-115.1808664 -36.10293954,-115.1808664 -36.10293188,-115.1808664 -36.10292422,-115.1808663 -36.10291701,-115.1808663 -36.10290935,-115.1808662 -36.10290169,-115.1808662 -36.10289448,-115.1808661 -36.10288682,-115.1808661 -36.10287916,-115.180866 -36.10287195,-115.180866 -36.1028643,-115.1808659 -36.10285664,-115.1808659 -36.10284943,-115.1808658 -36.10284177,-115.1808658 -36.10283411,-115.1808658 -36.1028269,-115.1808657 -36.10281924,-115.1808657 -36.10281158,-115.1808656 -36.10280437,-115.1808656 -36.10279671,-115.1808655 -36.10278905,-115.1808655 -36.10278184,-115.1808654 -36.10277418,-115.1808654 -36.10276652,-115.1808653 -36.10275932,-115.1808653 -36.10275166,-115.1808652 -36.102744,-115.1808652 -36.10273679,-115.1808652 -36.10272913,-115.1808651 -36.10272147,-115.1808651 -36.10271426,-115.180865 -36.1027066,-115.180865 -36.10269894,-115.1808649 -36.10269173,-115.1808649 -36.10268407,-115.1808648 -36.10267641,-115.1808648 -36.1026692,-115.1808647 -36.10266154,-115.1808647 -36.10265388,-115.1808646 -36.10264668,-115.1808646 -36.10263902,-115.1808646 -36.10263136,-115.1808645 -36.10262415,-115.1808645 -36.10261649,-115.1808644 -36.10260883,-115.1808644 -36.10260162,-115.1808643 -36.10259396,-115.1808643 -36.1025863,-115.1808642 -36.10257909,-115.1808642 -36.10257143,-115.1808641 -36.10256377,-115.1808641 -36.10255656,-115.180864 -36.1025489,-115.180864 -36.10254125,-115.180864 -36.10253404,-115.1808639 -36.10252638,-115.1808639 -36.10251872,-115.1808638 -36.10251151,-115.1808638 -36.10250385,-115.1808637 -36.10249619,-115.1808637 -36.10248898,-115.1808636 -36.10248132,-115.1808636 -36.10247366,-115.1808635 -36.10246645,-115.1808635 -36.10245879,-115.1808635 -36.10245113,-115.1808634 -36.10244392,-115.1808634 -36.10243627,-115.1808633 -36.10242861,-115.1808633 -36.1024214,-115.1808632 -36.10241374,-115.1808632 -36.10240608,-115.1808631 -36.10239887,-115.1808631 -36.10239121,-115.180863 -36.10238355,-115.180863 -36.10237634,-115.1808629 -36.10236868,-115.1808629 -36.10236102,-115.1808629 -36.10235381,-115.1808628 -36.10234615,-115.1808628 -36.10233849,-115.1808627 -36.10233129,-115.1808627 -36.10232363,-115.1808626 -36.10231597,-115.1808626 -36.10230876,-115.1808625 -36.1023011,-115.1808625 -36.10229344,-115.1808624 -36.10228623,-115.1808624 -36.10227857,-115.1808623 -36.10227091,-115.1808623 -36.1022637,-115.1808623 -36.10225604,-115.1808622 -36.10224838,-115.1808622 -36.10224117,-115.1808621 -36.10223351,-115.1808621 -36.10222585,-115.180862 -36.10221865,-115.180862 -36.10221099,-115.1808619 -36.10220333,-115.1808619 -36.10219612,-115.1808618 -36.10218846,-115.1808618 -36.1021808,-115.1808617 -36.10217359,-115.1808617 -36.10216593,-115.1808617 -36.10215827,-115.1808616 -36.10215106,-115.1808616 -36.1021434,-115.1808615 -36.10213574,-115.1808615 -36.10212853,-115.1808614 -36.10212087,-115.1808614 -36.10211321,-115.1808613 -36.10210601,-115.1808613 -36.10209835,-115.1808612 -36.10209069,-115.1808612 -36.10208348,-115.1808611 -36.10207582,-115.1808611 -36.10206816,-115.1808611 -36.10206095,-115.180861 -36.10205329,-115.180861 -36.10204563,-115.1808609 -36.10203842,-115.1808609 -36.10203076,-115.1808608 -36.1020231,-115.1808608 -36.10201589,-115.1808607 -36.10200823,-115.1808607 -36.10200058,-115.1808606 -36.10199337,-115.1808606 -36.10198571,-115.1808605 -36.10197805,-115.1808605 -36.10197084,-115.1808605 -36.10196318,-115.1808604 -36.10195552,-115.1808604 -36.10194831,-115.1808603 -36.10194065,-115.1808603 -36.10193299,-115.1808602 -36.10192578,-115.1808602 -36.10191812,-115.1808601 -36.10191046,-115.1808601 -36.10190325,-115.18086 -36.1018956,-115.18086 -36.10188794,-115.1808599 -36.10188073,-115.1808599 -36.10187307,-115.1808599 -36.10186541,-115.1808598 -36.1018582,-115.1808598 -36.10185054,-115.1808597 -36.10184288,-115.1808597 -36.10183567,-115.1808596 -36.10182801,-115.1808596 -36.10182035,-115.1808595 -36.10181314,-115.1808595 -36.10180548,-115.1808594 -36.10179782,-115.1808594 -36.10179062,-115.1808594 -36.10178296,-115.1808593 -36.1017753,-115.1808593 -36.10176809,-115.1808592 -36.10176043,-115.1808592 -36.10175277,-115.1808591 -36.10174556,-115.1808591 -36.1017379,-115.180859 -36.10173024,-115.180859 -36.10172303,-115.1808589 -36.10171537,-115.1808589 -36.10170771,-115.1808588 -36.1017005,-115.1808588 -36.10169284,-115.1808588 -36.10168518,-115.1808587 -36.10167798,-115.1808587 -36.10167032,-115.1808586 -36.10166266,-115.1808586 -36.10165545,-115.1808585 -36.10164779,-115.1808585 -36.10164013,-115.1808584 -36.10163292,-115.1808584 -36.10162526,-115.1808583 -36.1016176,-115.1808583 -36.10161039,-115.1808582 -36.10160273,-115.1808582 -36.10159507,-115.1808582 -36.10158786,-115.1808581 -36.1015802,-115.1808581 -36.10157254,-115.180858 -36.10156534,-115.180858 -36.10155768,-115.1808579 -36.10155002,-115.1808579 -36.10154281,-115.1808578 -36.10153515,-115.1808578 -36.10152749,-115.1808577 -36.10152028,-115.1808577 -36.10151262,-115.1808576 -36.10150496,-115.1808576 -36.10149775,-115.1808576 -36.10149009,-115.1808575 -36.10148243,-115.1808575 -36.10147522,-115.1808574 -36.10146756,-115.1808574 -36.10145991,-115.1808573 -36.1014527,-115.1808573 -36.10144504,-115.1808572 -36.10143738,-115.1808572 -36.10143017,-115.1808571 -36.10142251,-115.1808571 -36.10141485,-115.180857 -36.10140764,-115.180857 -36.10139998,-115.180857 -36.10139232,-115.1808569 -36.10138511,-115.1808569 -36.10137745,-115.1808568 -36.10136979,-115.1808568 -36.10136258,-115.1808567 -36.10135493,-115.1808567 -36.10134727,-115.1808566 -36.10134006,-115.1808566 -36.1013324,-115.1808565 -36.10132474,-115.1808565 -36.10131753,-115.1808564 -36.10130987,-115.1808564 -36.10130221,-115.1808564 -36.101295,-115.1808563 -36.10128734,-115.1808563 -36.10127968,-115.1808562 -36.10127247,-115.1808562 -36.10126481,-115.1808561 -36.10125715,-115.1808561 -36.10124995,-115.180856 -36.10124229,-115.180856 -36.10123463,-115.1808559 -36.10122742,-115.1808559 -36.10121976,-115.1808559 -36.1012121,-115.1808558 -36.10120489,-115.1808558 -36.10119723,-115.1808557 -36.10118957,-115.1808557 -36.10118236,-115.1808556 -36.1011747,-115.1808556 -36.10116704,-115.1808555 -36.10115983,-115.1808555 -36.10115217,-115.1808554 -36.10114451,-115.1808554 -36.10113731,-115.1808553 -36.10112965,-115.1808553 -36.10112199,-115.1808553 -36.10111478,-115.1808552 -36.10110712,-115.1808552 -36.10109946,-115.1808551 -36.10109225,-115.1808551 -36.10108459,-115.180855 -36.10107693,-115.180855 -36.10106972,-115.1808549 -36.10106206,-115.1808549 -36.1010544,-115.1808548 -36.10104719,-115.1808548 -36.10103953,-115.1808547 -36.10103187,-115.1808547 -36.10102467,-115.1808547 -36.10101701,-115.1808546 -36.10100935,-115.1808546 -36.10100214,-115.1808545 -36.10099448,-115.1808545 -36.10098682,-115.1808544 -36.10097961,-115.1808544 -36.10097195,-115.1808543 -36.10096429,-115.1808543 -36.10095708,-115.1808542 -36.10094942,-115.1808542 -36.10094176,-115.1808541 -36.10093455,-115.1808541 -36.10092689,-115.1808541 -36.10091924,-115.180854 -36.10091203,-115.180854 -36.10090437,-115.1808539 -36.10089671,-115.1808539 -36.1008895,-115.1808538 -36.10088184,-115.1808538 -36.10087418,-115.1808537 -36.10086697,-115.1808537 -36.10085931,-115.1808536 -36.10085165,-115.1808536 -36.10084444,-115.1808535 -36.10083678,-115.1808535 -36.10082912,-115.1808535 -36.10082191,-115.1808534 -36.10081426,-115.1808534 -36.1008066,-115.1808533 -36.10079939,-115.1808533 -36.10079173,-115.1808532 -36.10078407,-115.1808532 -36.10077686,-115.1808531 -36.1007692,-115.1808531 -36.10076154,-115.180853 -36.10075433,-115.180853 -36.10074667,-115.1808529 -36.10073901,-115.1808529 -36.1007318,-115.1808529 -36.10072414,-115.1808528 -36.10071648,-115.1808528 -36.10070928,-115.1808527 -36.10070162,-115.1808527 -36.10069396,-115.1808526 -36.10068675,-115.1808526 -36.10067909,-115.1808525 -36.10067143,-115.1808525 -36.10066422,-115.1808524 -36.10065656,-115.1808524 -36.1006489,-115.1808523 -36.10064169,-115.1808523 -36.10063403,-115.1808523 -36.10062637,-115.1808522 -36.10061916,-115.1808522 -36.1006115,-115.1808521 -36.10060384,-115.1808521 -36.10059664,-115.180852 -36.10058898,-115.180852 -36.10058132,-115.1808519 -36.10057411,-115.1808519 -36.10056645,-115.1808518 -36.10055879,-115.1808518 -36.10055158,-115.1808518 -36.10054392,-115.1808517 -36.10053626,-115.1808517 -36.10052905,-115.1808516 -36.10052139,-115.1808516 -36.10051373,-115.1808515 -36.10050652,-115.1808515 -36.10049886,-115.1808514 -36.1004912,-115.1808514 -36.100484,-115.1808513 -36.10047634,-115.1808513 -36.10046868,-115.1808512 -36.10046147,-115.1808512 -36.10045381,-115.1808512 -36.10044615,-115.1808511 -36.10043894,-115.1808511 -36.10043128,-115.180851 -36.10042362,-115.1808511 -36.10041641,-115.1808513 -36.10040876,-115.1808514 -36.1004011,-115.1808516 -36.10039389,-115.1808518 -36.10038623,-115.1808519 -36.10037857,-115.1808521 -36.10037136,-115.1808523 -36.10036371,-115.1808524 -36.10035605,-115.1808526 -36.10034884,-115.1808528 -36.10034118,-115.1808529 -36.10033352,-115.1808531 -36.10032632,-115.1808533 -36.10031866,-115.1808534 -36.100311,-115.1808536 -36.10030379,-115.1808538 -36.10029613,-115.1808539 -36.10028847,-115.1808541 -36.10028127,-115.1808543 -36.10027361,-115.1808544 -36.10026595,-115.1808546 -36.10025874,-115.1808548 -36.10025108,-115.1808549 -36.10024342,-115.1808551 -36.10023622,-115.1808552 -36.10022856,-115.1808554 -36.1002209,-115.1808556 -36.10021369,-115.1808557 -36.10020603,-115.1808559 -36.10019838,-115.1808561 -36.10019117,-115.1808562 -36.10018351,-115.1808564 -36.10017585,-115.1808566 -36.10016864,-115.1808567 -36.10016098,-115.1808569 -36.10015333,-115.1808571 -36.10014612,-115.1808572 -36.10013846,-115.1808574 -36.1001308,-115.1808576 -36.10012359,-115.1808577 -36.10011594,-115.1808579 -36.10010828,-115.1808581 -36.10010107,-115.1808582 -36.10009341,-115.1808584 -36.10008575,-115.1808586 -36.10007854,-115.1808587 -36.10007089,-115.1808589 -36.10006323,-115.1808591 -36.10005602,-115.1808592 -36.10004836,-115.1808594 -36.1000407,-115.1808596 -36.1000335,-115.1808597 -36.10002584,-115.1808599 -36.10001818,-115.1808601 -36.10001097,-115.1808602 -36.10000331,-115.1808604 -36.09999565,-115.1808606 -36.09998845,-115.1808607 -36.09998079,-115.1808609 -36.09997313,-115.180861 -36.09996592,-115.1808612 -36.09995826,-115.1808614 -36.09995061,-115.1808615 -36.0999434,-115.1808617 -36.09993574,-115.1808619 -36.09992808,-115.180862 -36.09992087,-115.1808622 -36.09991321,-115.1808624 -36.09990556,-115.1808625 -36.09989835,-115.1808627 -36.09989069,-115.1808629 -36.09988303,-115.180863 -36.09987582,-115.1808632 -36.09986817,-115.1808634 -36.09986051,-115.1808635 -36.0998533,-115.1808637 -36.09984564,-115.1808639 -36.09983798,-115.180864 -36.09983077,-115.1808642 -36.09982312,-115.1808644 -36.09981546,-115.1808645 -36.09980825,-115.1808647 -36.09980059,-115.1808648 -36.09979293,-115.180865 -36.09978573,-115.1808652 -36.09977807,-115.1808653 -36.09977041,-115.1808655 -36.0997632,-115.1808657 -36.09975554,-115.1808658 -36.09974788,-115.180866 -36.09974068,-115.1808662 -36.09973302,-115.1808663 -36.09972536,-115.1808665 -36.09971815,-115.1808667 -36.09971049,-115.1808668 -36.09970283,-115.180867 -36.09969563,-115.1808672 -36.09968797,-115.1808673 -36.09968031,-115.1808675 -36.0996731,-115.1808677 -36.09966544,-115.1808678 -36.09965779,-115.180868 -36.09965058,-115.1808682 -36.09964292,-115.1808683 -36.09963526,-115.1808685 -36.09962805,-115.1808687 -36.09962039,-115.1808688 -36.09961274,-115.180869 -36.09960553,-115.1808691 -36.09959787,-115.1808693 -36.09959021,-115.1808695 -36.099583,-115.1808696 -36.09957535,-115.1808698 -36.09956769,-115.18087 -36.09956048,-115.1808701 -36.09955282,-115.1808703 -36.09954516,-115.1808705 -36.09953795,-115.1808706 -36.0995303,-115.1808708 -36.09952264,-115.180871 -36.09951543,-115.1808711 -36.09950777,-115.1808713 -36.09950011,-115.1808715 -36.09949291,-115.1808716 -36.09948525,-115.1808718 -36.09947759,-115.180872 -36.09947038,-115.1808721 -36.09946272,-115.1808723 -36.09945506,-115.1808725 -36.09944786,-115.1808726 -36.0994402,-115.1808728 -36.09943254,-115.180873 -36.09942533,-115.1808731 -36.09941767,-115.1808733 -36.09941001,-115.1808735 -36.09940281,-115.1808736 -36.09939515,-115.1808738 -36.09938749,-115.180874 -36.09938028,-115.1808741 -36.09937262,-115.1808743 -36.09936497,-115.1808745 -36.09935776,-115.1808746 -36.0993501,-115.1808748 -36.09934244,-115.1808749 -36.09933523,-115.1808751 -36.09932757,-115.1808753 -36.09931992,-115.1808754 -36.09931271,-115.1808756 -36.09930505,-115.1808758 -36.09929739,-115.1808759 -36.09929018,-115.1808761 -36.09928253,-115.1808763 -36.09927487,-115.1808764 -36.09926766,-115.1808766 -36.09926,-115.1808768 -36.09925234,-115.1808769 -36.09924513,-115.1808771 -36.09923748,-115.1808773 -36.09922982,-115.1808774 -36.09922261,-115.1808776 -36.09921495,-115.1808778 -36.09920729,-115.1808779 -36.09920009,-115.1808781 -36.09919243,-115.1808783 -36.09918477,-115.1808784 -36.09917756,-115.1808786 -36.0991699,-115.1808788 -36.09916224,-115.1808789 -36.09915504,-115.1808791 -36.09914738,-115.1808792 -36.09913972,-115.1808794 -36.09913251,-115.1808796 -36.09912485,-115.1808797 -36.09911719,-115.1808799 -36.09910999,-115.1808801 -36.09910233,-115.1808802 -36.09909467,-115.1808804 -36.09908746,-115.1808806 -36.0990798,-115.1808807 -36.09907215,-115.1808809 -36.09906494,-115.1808811 -36.09905728,-115.1808812 -36.09904962,-115.1808814 -36.09904241,-115.1808816 -36.09903475,-115.1808817 -36.0990271,-115.1808819 -36.09901989,-115.1808821 -36.09901223,-115.1808822 -36.09900457,-115.1808824 -36.09899736,-115.1808826 -36.09898971,-115.1808827 -36.09898205,-115.1808829 -36.09897484,-115.180883 -36.09896718,-115.1808832 -36.09895952,-115.1808834 -36.09895231,-115.1808835 -36.09894466,-115.1808837 -36.098937,-115.1808839 -36.09892979,-115.180884 -36.09892213,-115.1808842 -36.09891447,-115.1808844 -36.09890727,-115.1808845 -36.09889961,-115.1808847 -36.09889195,-115.1808849 -36.09888474,-115.180885 -36.09887708,-115.1808852 -36.09886942,-115.1808854 -36.09886222,-115.1808855 -36.09885456,-115.1808857 -36.0988469,-115.1808859 -36.09883969,-115.180886 -36.09883203,-115.1808862 -36.09882437,-115.1808864 -36.09881717,-115.1808865 -36.09880951,-115.1808867 -36.09880185,-115.1808869 -36.09879464,-115.180887 -36.09878698,-115.1808872 -36.09877933,-115.1808874 -36.09877212,-115.1808875 -36.09876446,-115.1808877 -36.0987568,-115.1808879 -36.09874959,-115.180888 -36.09874193,-115.1808882 -36.09873428,-115.1808884 -36.09872707,-115.1808885 -36.09871941,-115.1808887 -36.09871175,-115.1808888 -36.09870454,-115.180889 -36.09869689,-115.1808892 -36.09868923,-115.1808893 -36.09868202,-115.1808895 -36.09867436,-115.1808897 -36.0986667,-115.1808898 -36.09865949,-115.18089 -36.09865184,-115.1808902 -36.09864418,-115.1808903 -36.09863697,-115.1808905 -36.09862931,-115.1808907 -36.09862165,-115.1808908 -36.09861445,-115.180891 -36.09860679,-115.1808912 -36.09859913,-115.1808913 -36.09859192,-115.1808915 -36.09858426,-115.1808917 -36.0985766,-115.1808918 -36.0985694,-115.180892 -36.09856174,-115.1808922 -36.09855408,-115.1808923 -36.09854687,-115.1808925 -36.09853921,-115.1808927 -36.09853155,-115.1808928 -36.09852435,-115.180893 -36.09851669,-115.1808931 -36.09850903,-115.1808933 -36.09850182,-115.1808935 -36.09849416,-115.1808936 -36.09848651,-115.1808938 -36.0984793,-115.180894 -36.09847164,-115.1808941 -36.09846398,-115.1808943 -36.09845677,-115.1808945 -36.09844911,-115.1808946 -36.09844146,-115.1808948 -36.09843425,-115.180895 -36.09842659,-115.1808951 -36.09841893,-115.1808953 -36.09841172,-115.1808955 -36.09840407,-115.1808956 -36.09839641,-115.1808958 -36.0983892,-115.180896 -36.09838154,-115.1808961 -36.09837388,-115.1808963 -36.09836667,-115.1808965 -36.09835902,-115.1808966 -36.09835136,-115.1808968 -36.09834415,-115.1808969 -36.09833649,-115.1808971 -36.09832883,-115.1808973 -36.09832163,-115.1808974 -36.09831397,-115.1808976 -36.09830631,-115.1808978 -36.0982991,-115.1808979 -36.09829144,-115.1808981 -36.09828378,-115.1808983 -36.09827658,-115.1808984 -36.09826892,-115.1808986 -36.09826126,-115.1808988 -36.09825405,-115.1808989 -36.09824639,-115.1808991 -36.09823873,-115.1808993 -36.09823153,-115.1808994 -36.09822387,-115.1808996 -36.09821621,-115.1808998 -36.098209,-115.1808999 -36.09820134,-115.1809001 -36.09819369,-115.1809003 -36.09818648,-115.1809004 -36.09817882,-115.1809006 -36.09817116,-115.1809008 -36.09816395,-115.1809009 -36.09815629,-115.1809011 -36.09814864,-115.1809013 -36.09814143,-115.1809014 -36.09813377,-115.1809016 -36.09812611,-115.1809018 -36.0981189,-115.1809019 -36.09811125,-115.1809019 -36.09810359,-115.1809018 -36.09809638,-115.1809016 -36.09808872,-115.1809015 -36.09808106,-115.1809014 -36.09807385,-115.1809012 -36.09806619,-115.1809011 -36.09805854,-115.1809009 -36.09805133,-115.1809008 -36.09804367,-115.1809006 -36.09803601,-115.1809005 -36.0980288,-115.1809004 -36.09802114,-115.1809002 -36.09801348,-115.1809001 -36.09800628,-115.1808999 -36.09799862,-115.1808998 -36.09799096,-115.1808996 -36.09798375,-115.1808995 -36.09797609,-115.1808993 -36.09796843,-115.1808992 -36.09796123,-115.1808991 -36.09795357,-115.1808989 -36.09794591,-115.1808988 -36.0979387,-115.1808986 -36.09793104,-115.1808985 -36.09792338,-115.1808983 -36.09791617,-115.1808982 -36.09790852,-115.180898 -36.09790086,-115.1808979 -36.09789365,-115.1808978 -36.09788599,-115.1808976 -36.09787833,-115.1808975 -36.09787112,-115.1808973 -36.09786346,-115.1808972 -36.09785581,-115.180897 -36.0978486,-115.1808969 -36.09784094,-115.1808968 -36.09783328,-115.1808966 -36.09782607,-115.1808965 -36.09781841,-115.1808963 -36.09781075,-115.1808962 -36.09780355,-115.180896 -36.09779589,-115.1808959 -36.09778823,-115.1808957 -36.09778102,-115.1808956 -36.09777336,-115.1808955 -36.0977657,-115.1808953 -36.0977585,-115.1808952 -36.09775084,-115.180895 -36.09774318,-115.1808949 -36.09773597,-115.1808947 -36.09772831,-115.1808946 -36.09772065,-115.1808945 -36.09771344,-115.1808943 -36.09770579,-115.1808942 -36.09769813,-115.180894 -36.09769092,-115.1808941 -36.09768326,-115.1808942 -36.0976756,-115.1808943 -36.09766839,-115.1808944 -36.09766073,-115.1808945 -36.09765307,-115.1808946 -36.09764587,-115.1808947 -36.09763821,-115.1808948 -36.09763055,-115.1808949 -36.09762334,-115.180895 -36.09761568,-115.1808951 -36.09760802,-115.1808952 -36.09760081,-115.1808953 -36.09759315,-115.1808954 -36.09758549,-115.1808955 -36.09757828,-115.1808956 -36.09757063,-115.1808957 -36.09756297,-115.1808958 -36.09755576,-115.1808959 -36.0975481,-115.180896 -36.09754044,-115.1808961 -36.09753323,-115.1808962 -36.09752557,-115.1808963 -36.09751791,-115.1808964 -36.0975107,-115.1808965 -36.09750304,-115.1808966 -36.09749539,-115.1808967 -36.09748818,-115.1808968 -36.09748052,-115.1808969 -36.09747286,-115.180897 -36.09746565,-115.1808971 -36.09745799,-115.1808973 -36.09745033,-115.1808974 -36.09744312,-115.1808975 -36.09743546,-115.1808976 -36.09742781,-115.1808977 -36.0974206,-115.1808978 -36.09741294,-115.1808979 -36.09740528,-115.180898 -36.09739807,-115.1808981 -36.09739041,-115.1808982 -36.09738275,-115.1808983 -36.09737554,-115.1808984 -36.09736788,-115.1808985 -36.09736022,-115.1808986 -36.09735302,-115.1808987 -36.09734536,-115.1808988 -36.0973377,-115.1808989 -36.09733049,-115.180899 -36.09732283,-115.1808991 -36.09731517,-115.1808992 -36.09730796,-115.1808993 -36.0973003,-115.1808994 -36.09729264,-115.1808995 -36.09728544,-115.1808996 -36.09727778,-115.1808997 -36.09727012,-115.1808998 -36.09726291,-115.1808999 -36.09725525,-115.1809 -36.09724759,-115.1809001 -36.09724038,-115.1809002 -36.09723272,-115.1809003 -36.09722506,-115.1809004 -36.09721785,-115.1809005 -36.0972102,-115.1809006 -36.09720254,-115.1809007 -36.09719533,-115.1809008 -36.09718767,-115.1809009 -36.09718001,-115.180901 -36.0971728,-115.1809011 -36.09716514,-115.1809012 -36.09715748,-115.1809013 -36.09715027,-115.1809014 -36.09714262,-115.1809015 -36.09713496,-115.1809016 -36.09712775,-115.1809017 -36.09712009,-115.1809018 -36.09711243,-115.180902 -36.09710522,-115.1809021 -36.09709756,-115.1809022 -36.0970899,-115.1809023 -36.09708269,-115.1809024 -36.09707503,-115.1809025 -36.09706738,-115.1809026 -36.09706017,-115.1809027 -36.09705251,-115.1809028 -36.09704485,-115.1809029 -36.09703764,-115.180903 -36.09702998,-115.1809031 -36.09702232,-115.1809032 -36.09701511,-115.1809033 -36.09700745,-115.1809034 -36.09699979,-115.1809035 -36.09699259,-115.1809036 -36.09698493,-115.1809037 -36.09697727,-115.1809038 -36.09697006,-115.1809039 -36.0969624,-115.180904 -36.09695474,-115.1809041 -36.09694753,-115.1809042 -36.09693987,-115.1809043 -36.09693221,-115.1809044 -36.09692501,-115.1809045 -36.09691735,-115.1809046 -36.09690969,-115.1809047 -36.09690248,-115.1809048 -36.09689482,-115.1809049 -36.09688716,-115.180905 -36.09687995,-115.1809051 -36.09687229,-115.1809052 -36.09686463,-115.1809053 -36.09685743,-115.1809054 -36.09684977,-115.1809055 -36.09684211,-115.1809056 -36.0968349,-115.1809057 -36.09682724,-115.1809058 -36.09681958,-115.1809059 -36.09681237,-115.180906 -36.09680471,-115.1809061 -36.09679705,-115.1809062 -36.09678984,-115.1809063 -36.09678219,-115.1809064 -36.09677453,-115.1809066 -36.09676732,-115.1809066 -36.09675966,-115.1809068 -36.096752,-115.1809069 -36.09674479,-115.180907 -36.09673713,-115.1809071 -36.09672947,-115.1809072 -36.09672226,-115.1809073 -36.0967146,-115.1809074 -36.09670695,-115.1809075 -36.09669974,-115.1809076 -36.09669208,-115.1809077 -36.09668442,-115.1809078 -36.09667721,-115.1809079 -36.09666955,-115.180908 -36.09666189,-115.1809081 -36.09665468,-115.1809082 -36.09664702,-115.1809083 -36.09663937,-115.1809084 -36.09663216,-115.1809085 -36.0966245,-115.1809086 -36.09661684,-115.1809087 -36.09660963,-115.1809088 -36.09660197,-115.1809089 -36.09659431,-115.180909 -36.0965871,-115.1809091 -36.09657944,-115.1809092 -36.09657178,-115.1809093 -36.09656458,-115.1809094 -36.09655692,-115.1809095 -36.09654926,-115.1809096 -36.09654205,-115.1809097 -36.09653439,-115.1809098 -36.09652673,-115.1809099 -36.09651952,-115.18091 -36.09651186,-115.1809101 -36.0965042,-115.1809102 -36.096497,-115.1809103 -36.09648934,-115.1809104 -36.09648168,-115.1809105 -36.09647447,-115.1809106 -36.09646681,-115.1809107 -36.09645915,-115.1809108 -36.09645194,-115.1809109 -36.09644428,-115.180911 -36.09643662,-115.1809111 -36.09642941,-115.1809112 -36.09642176,-115.1809114 -36.0964141,-115.1809115 -36.09640689,-115.1809116 -36.09639923,-115.1809117 -36.09639157,-115.1809118 -36.09638436,-115.1809119 -36.0963767,-115.180912 -36.09636904,-115.1809121 -36.09636183,-115.1809122 -36.09635418,-115.1809123 -36.09634652,-115.1809124 -36.09633931,-115.1809125 -36.09633165,-115.1809126 -36.09632399,-115.1809127 -36.09631678,-115.1809128 -36.09630912,-115.1809129 -36.09630146,-115.180913 -36.09629425,-115.1809131 -36.09628659,-115.1809132 -36.09627894,-115.1809133 -36.09627173,-115.1809134 -36.09626407,-115.1809135 -36.09625641,-115.1809136 -36.0962492,-115.1809137 -36.09624154,-115.1809138 -36.09623388,-115.1809139 -36.09622667,-115.180914 -36.09621901,-115.1809141 -36.09621135,-115.1809142 -36.09620415,-115.1809143 -36.09619649,-115.1809144 -36.09618883,-115.1809145 -36.09618162,-115.1809146 -36.09617396,-115.1809147 -36.0961663,-115.1809148 -36.09615909,-115.1809149 -36.09615143,-115.180915 -36.09614377,-115.1809151 -36.09613657,-115.1809152 -36.09612891,-115.1809153 -36.09612125,-115.1809154 -36.09611404,-115.1809155 -36.09610638,-115.1809156 -36.09609872,-115.1809157 -36.09609151,-115.1809158 -36.09608385,-115.1809159 -36.09607619,-115.1809161 -36.09606899,-115.1809161 -36.09606133,-115.1809163 -36.09605367,-115.1809164 -36.09604646,-115.1809165 -36.0960388,-115.1809166 -36.09603114,-115.1809167 -36.09602393,-115.1809168 -36.09601627,-115.1809169 -36.09600861,-115.180917 -36.0960014,-115.1809171 -36.09599375,-115.1809172 -36.09598609,-115.1809173 -36.09597888,-115.1809174 -36.09597122,-115.1809175 -36.09596356,-115.1809176 -36.09595635,-115.1809177 -36.09594869,-115.1809178 -36.09594103,-115.1809179 -36.09593382,-115.180918 -36.09592616,-115.180918 -36.0959185,-115.1809179 -36.0959113,-115.1809179 -36.09590364,-115.1809179 -36.09589598,-115.1809178 -36.09588877,-115.1809178 -36.09588111,-115.1809177 -36.09587345,-115.1809177 -36.09586624,-115.1809177 -36.09585858,-115.1809176 -36.09585092,-115.1809176 -36.09584371,-115.1809176 -36.09583605,-115.1809175 -36.09582839,-115.1809175 -36.09582118,-115.1809174 -36.09581352,-115.1809174 -36.09580586,-115.1809174 -36.09579866,-115.1809173 -36.095791,-115.1809173 -36.09578334,-115.1809172 -36.09577613,-115.1809172 -36.09576847,-115.1809172 -36.09576081,-115.1809171 -36.0957536,-115.1809171 -36.09574594,-115.1809171 -36.09573828,-115.180917 -36.09573107,-115.180917 -36.09572341,-115.1809169 -36.09571575,-115.1809169 -36.09570854,-115.1809169 -36.09570088,-115.1809168 -36.09569322,-115.1809168 -36.09568602,-115.1809168 -36.09567836,-115.1809167 -36.0956707,-115.1809167 -36.09566349,-115.1809166 -36.09565583,-115.1809166 -36.09564817,-115.1809166 -36.09564096,-115.1809165 -36.0956333,-115.1809165 -36.09562564,-115.1809165 -36.09561843,-115.1809164 -36.09561077,-115.1809164 -36.09560311,-115.1809163 -36.0955959,-115.1809163 -36.09558824,-115.1809163 -36.09558058,-115.1809162 -36.09557338,-115.1809162 -36.09556572,-115.1809162 -36.09555806,-115.1809161 -36.09555085,-115.1809161 -36.09554319,-115.180916 -36.09553553,-115.180916 -36.09552832,-115.180916 -36.09552066,-115.1809159 -36.095513,-115.1809159 -36.09550579,-115.1809159 -36.09549813,-115.1809158 -36.09549047,-115.1809158 -36.09548326,-115.1809157 -36.0954756,-115.1809157 -36.09546794,-115.1809157 -36.09546073,-115.1809156 -36.09545308,-115.1809156 -36.09544542,-115.1809155 -36.09543821,-115.1809155 -36.09543055,-115.1809155 -36.09542289,-115.1809154 -36.09541568,-115.1809154 -36.09540802,-115.1809154 -36.09540036,-115.1809153 -36.09539315,-115.1809153 -36.09538549,-115.1809152 -36.09537783,-115.1809152 -36.09537062,-115.1809152 -36.09536296,-115.1809151 -36.0953553,-115.1809151 -36.09534809,-115.1809151 -36.09534044,-115.180915 -36.09533278,-115.180915 -36.09532557,-115.1809149 -36.09531791,-115.1809149 -36.09531025,-115.1809149 -36.09530304,-115.1809148 -36.09529538,-115.1809148 -36.09528772,-115.1809148 -36.09528051,-115.1809147 -36.09527285,-115.1809147 -36.09526519,-115.1809146 -36.09525798,-115.1809146 -36.09525032,-115.1809146 -36.09524266,-115.1809145 -36.09523545,-115.1809145 -36.09522779,-115.1809145 -36.09522014,-115.1809144 -36.09521293,-115.1809144 -36.09520527,-115.1809143 -36.09519761,-115.1809143 -36.0951904,-115.1809143 -36.09518274,-115.1809142 -36.09517508,-115.1809142 -36.09516787,-115.1809142 -36.09516021,-115.1809141 -36.09515255,-115.1809141 -36.09514534,-115.180914 -36.09513768,-115.180914 -36.09513002,-115.180914 -36.09512281,-115.1809139 -36.09511515,-115.1809139 -36.09510749,-115.1809139 -36.09510029,-115.1809138 -36.09509263,-115.1809138 -36.09508497,-115.1809137 -36.09507776,-115.1809137 -36.0950701,-115.1809137 -36.09506244,-115.1809136 -36.09505523,-115.1809136 -36.09504757,-115.1809135 -36.09503991,-115.1809135 -36.0950327,-115.1809135 -36.09502504,-115.1809134 -36.09501738,-115.1809134 -36.09501017,-115.1809134 -36.09500251,-115.1809133 -36.09499485,-115.1809133 -36.09498765,-115.1809132 -36.09497999,-115.1809132 -36.09497233,-115.1809132 -36.09496512,-115.1809131 -36.09495746,-115.1809131 -36.0949498,-115.1809131 -36.09494259,-115.180913 -36.09493493,-115.180913 -36.09492727,-115.1809129 -36.09492006,-115.1809129 -36.0949124,-115.1809129 -36.09490474,-115.1809128 -36.09489753,-115.1809128 -36.09488987,-115.1809128 -36.09488221,-115.1809127 -36.09487501,-115.1809127 -36.09486735,-115.1809126 -36.09485969,-115.1809126 -36.09485248,-115.1809126 -36.09484482,-115.1809125 -36.09483716,-115.1809125 -36.09482995,-115.1809125 -36.09482229,-115.1809124 -36.09481463,-115.1809124 -36.09480742,-115.1809123 -36.09479976,-115.1809123 -36.0947921,-115.1809123 -36.09478489,-115.1809122 -36.09477723,-115.1809122 -36.09476957,-115.1809122 -36.09476237,-115.1809121 -36.09475471,-115.1809121 -36.09474705,-115.180912 -36.09473984,-115.180912 -36.09473218,-115.180912 -36.09472452,-115.1809119 -36.09471731,-115.1809119 -36.09470965,-115.1809119 -36.09470199,-115.1809118 -36.09469478,-115.1809118 -36.09468712,-115.1809117 -36.09467946,-115.1809117 -36.09467225,-115.1809117 -36.09466459,-115.1809116 -36.09465693,-115.1809116 -36.09464972,-115.1809116 -36.09464207,-115.1809115 -36.09463441,-115.1809115 -36.0946272,-115.1809114 -36.09461954,-115.1809114 -36.09461188,-115.1809114 -36.09460467,-115.1809113 -36.09459701,-115.1809113 -36.09458935,-115.1809112 -36.09458214,-115.1809112 -36.09457448,-115.1809112 -36.09456682,-115.1809111 -36.09455961,-115.1809111 -36.09455195,-115.1809111 -36.09454429,-115.180911 -36.09453708,-115.180911 -36.09452942,-115.1809109 -36.09452177,-115.1809109 -36.09451456,-115.1809109 -36.0945069,-115.1809108 -36.09449924,-115.1809108 -36.09449203,-115.1809108 -36.09448437,-115.1809107 -36.09447671,-115.1809107 -36.0944695,-115.1809106 -36.09446184,-115.1809106 -36.09445418,-115.1809106 -36.09444697,-115.1809105 -36.09443931,-115.1809105 -36.09443165,-115.1809105 -36.09442444,-115.1809104 -36.09441678,-115.1809104 -36.09440913,-115.1809103 -36.09440192,-115.1809103 -36.09439426,-115.1809103 -36.0943866,-115.1809102 -36.09437939,-115.1809102 -36.09437173,-115.1809102 -36.09436407,-115.1809101 -36.09435686,-115.1809101 -36.0943492,-115.18091 -36.09434154,-115.18091 -36.09433433,-115.18091 -36.09432667,-115.1809099 -36.09431901,-115.1809099 -36.0943118,-115.1809099 -36.09430414,-115.1809098 -36.09429648,-115.1809098 -36.09428928,-115.1809097 -36.09428162,-115.1809097 -36.09427396,-115.1809097 -36.09426675,-115.1809096 -36.09425909,-115.1809096 -36.09425143,-115.1809095 -36.09424422,-115.1809095 -36.09423656,-115.1809095 -36.0942289,-115.1809094 -36.09422169,-115.1809094 -36.09421403,-115.1809094 -36.09420637,-115.1809093 -36.09419916,-115.1809093 -36.0941915,-115.1809092 -36.09418384,-115.1809092 -36.09417664,-115.1809092 -36.09416898,-115.1809091 -36.09416132,-115.1809091 -36.09415411,-115.1809091 -36.09414645,-115.180909 -36.09413879,-115.180909 -36.09413158,-115.1809089 -36.09412392,-115.1809089 -36.09411626,-115.1809089 -36.09410905,-115.1809088 -36.09410139,-115.1809088 -36.09409373,-115.1809088 -36.09408652,-115.1809087 -36.09407886,-115.1809087 -36.0940712,-115.1809086 -36.094064,-115.1809086 -36.09405634,-115.1809086 -36.09404868,-115.1809085 -36.09404147,-115.1809085 -36.09403381,-115.1809085 -36.09402615,-115.1809084 -36.09401894,-115.1809084 -36.09401128,-115.1809083 -36.09400362,-115.1809083 -36.09399641,-115.1809083 -36.09398875,-115.1809082 -36.09398109,-115.1809082 -36.09397388,-115.1809082 -36.09396622,-115.1809081 -36.09395856,-115.1809081 -36.09395135,-115.180908 -36.0939437,-115.180908 -36.09393604,-115.180908 -36.09392883,-115.1809079 -36.09392117,-115.1809079 -36.09391351,-115.1809078 -36.0939063,-115.1809078 -36.09389864,-115.1809078 -36.09389098,-115.1809077 -36.09388377,-115.1809077 -36.09387611,-115.1809077 -36.09386845,-115.1809076 -36.09386124,-115.1809076 -36.09385358,-115.1809075 -36.09384592,-115.1809075 -36.09383871,-115.1809075 -36.09383105,-115.1809074 -36.0938234,-115.1809074 -36.09381619,-115.1809074 -36.09380853,-115.1809073 -36.09380087,-115.1809073 -36.09379366,-115.1809072 -36.093786,-115.1809072 -36.09377834,-115.1809072 -36.09377113,-115.1809071 -36.09376347,-115.1809071 -36.09375581,-115.1809071 -36.0937486,-115.180907 -36.09374094,-115.180907 -36.09373328,-115.1809069 -36.09372607,-115.1809069 -36.09371841,-115.1809069 -36.09371076,-115.1809068 -36.09370355,-115.1809068 -36.09369589,-115.1809068 -36.09368823,-115.1809067 -36.09368102,-115.1809067 -36.09367336,-115.1809066 -36.0936657,-115.1809066 -36.09365849,-115.1809066 -36.09365083,-115.1809065 -36.09364317,-115.1809065 -36.09363596,-115.1809065 -36.0936283,-115.1809064 -36.09362064,-115.1809064 -36.09361343,-115.1809063 -36.09360577,-115.1809063 -36.09359811,-115.1809063 -36.09359091,-115.1809062 -36.09358325,-115.1809062 -36.09357559,-115.1809062 -36.09356838,-115.1809061 -36.09356072,-115.1809061 -36.09355306,-115.180906 -36.09354585,-115.180906 -36.09353819,-115.180906 -36.09353053,-115.1809059 -36.09352332,-115.1809059 -36.09351566,-115.1809059 -36.093508,-115.1809058 -36.09350079,-115.1809058 -36.09349313,-115.1809057 -36.09348547,-115.1809057 -36.09347827,-115.1809057 -36.09347061,-115.1809056 -36.09346295,-115.1809056 -36.09345574,-115.1809055 -36.09344808,-115.1809055 -36.09344042,-115.1809055 -36.09343321,-115.1809054 -36.09342555,-115.1809054 -36.09341789,-115.1809054 -36.09341068,-115.1809053 -36.09340302,-115.1809053 -36.09339536,-115.1809052 -36.09338815,-115.1809052 -36.09338049,-115.1809052 -36.09337283,-115.1809051 -36.09336563,-115.1809051 -36.09335797,-115.1809051 -36.09335031,-115.180905 -36.0933431,-115.180905 -36.09333544,-115.1809049 -36.09332778,-115.1809049 -36.09332057,-115.1809049 -36.09331291,-115.1809048 -36.09330525,-115.1809048 -36.09329804,-115.1809048 -36.09329038,-115.1809047 -36.09328272,-115.1809047 -36.09327551,-115.1809046 -36.09326785,-115.1809046 -36.09326019,-115.1809046 -36.09325298,-115.1809045 -36.09324533,-115.1809045 -36.09323767,-115.1809045 -36.09323046,-115.1809044 -36.0932228,-115.1809044 -36.09321514,-115.1809043 -36.09320793,-115.1809043 -36.09320027,-115.1809043 -36.09319261,-115.1809042 -36.0931854,-115.1809042 -36.09317774,-115.1809042 -36.09317008,-115.1809041 -36.09316287,-115.1809041 -36.09315521,-115.180904 -36.09314755,-115.180904 -36.09314034,-115.180904 -36.09313268,-115.1809039 -36.09312503,-115.1809039 -36.09311782,-115.1809039 -36.09311016,-115.1809038 -36.0931025,-115.1809038 -36.09309529,-115.1809037 -36.09308763,-115.1809037 -36.09307997,-115.1809037 -36.09307276,-115.1809036 -36.0930651,-115.1809036 -36.09305744,-115.1809035 -36.09305023,-115.1809035 -36.09304257,-115.1809035 -36.09303491,-115.1809034 -36.0930277,-115.1809034 -36.09302004,-115.1809034 -36.09301238,-115.1809033 -36.09300518,-115.1809033 -36.09299752,-115.1809032 -36.09298986,-115.1809032 -36.09298265,-115.1809032 -36.09297499,-115.1809031 -36.09296733,-115.1809031 -36.09296012,-115.1809031 -36.09295246,-115.180903 -36.0929448,-115.180903 -36.09293759,-115.1809029 -36.09292993,-115.1809029 -36.09292227,-115.1809029 -36.09291506,-115.1809028 -36.0929074,-115.1809028 -36.09289974,-115.1809028 -36.09289254,-115.1809027 -36.09288488,-115.1809027 -36.09287722,-115.1809026 -36.09287001,-115.1809026 -36.09286235,-115.1809026 -36.09285469,-115.1809025 -36.09284748,-115.1809025 -36.09283982,-115.1809025 -36.09283216,-115.1809024 -36.09282495,-115.1809024 -36.09281729,-115.1809023 -36.09280963,-115.1809023 -36.09280242,-115.1809023 -36.09279476,-115.1809022 -36.0927871,-115.1809022 -36.0927799,-115.1809022 -36.09277224,-115.1809021 -36.09276458,-115.1809021 -36.09275737,-115.180902 -36.09274971,-115.180902 -36.09274205,-115.180902 -36.09273484,-115.1809019 -36.09272718,-115.1809019 -36.09271952,-115.1809018 -36.09271231,-115.1809018 -36.09270465,-115.1809018 -36.09269699,-115.1809017 -36.09268978,-115.1809017 -36.09268212,-115.1809017 -36.09267446,-115.1809016 -36.09266725,-115.1809016 -36.0926596,-115.1809015 -36.09265194,-115.1809015 -36.09264473,-115.1809015 -36.09263707,-115.1809014 -36.09262941,-115.1809014 -36.0926222,-115.1809014 -36.09261454,-115.1809013 -36.09260688,-115.1809013 -36.09259967,-115.1809012 -36.09259201,-115.1809012 -36.09258435,-115.1809012 -36.09257714,-115.1809011 -36.09256948,-115.1809011 -36.09256182,-115.1809011 -36.09255461,-115.180901 -36.09254695,-115.180901 -36.0925393,-115.1809009 -36.09253209,-115.1809009 -36.09252443,-115.1809009 -36.09251677,-115.1809008 -36.09250956,-115.1809008 -36.0925019,-115.1809008 -36.09249424,-115.1809007 -36.09248703,-115.1809007 -36.09247937,-115.1809006 -36.09247171,-115.1809006 -36.0924645,-115.1809006 -36.09245684,-115.1809005 -36.09244918,-115.1809005 -36.09244197,-115.1809005 -36.09243431,-115.1809004 -36.09242665,-115.1809004 -36.09241945,-115.1809003 -36.09241179,-115.1809003 -36.09240413,-115.1809003 -36.09239692,-115.1809002 -36.09238926,-115.1809002 -36.0923816,-115.1809002 -36.09237439,-115.1809001 -36.09236673,-115.1809001 -36.09235907,-115.1809 -36.09235186,-115.1809 -36.0923442,-115.1809 -36.09233654,-115.1808999 -36.09232933,-115.1808999 -36.09232167,-115.1808998 -36.09231401,-115.1808998 -36.09230681,-115.1808998 -36.09229915,-115.1808997 -36.09229149,-115.1808997 -36.09228428,-115.1808997 -36.09227662,-115.1808996 -36.09226896,-115.1808996 -36.09226175,-115.1808995 -36.09225409,-115.1808995 -36.09224643,-115.1808995 -36.09223922,-115.1808994 -36.09223156,-115.1808994 -36.0922239,-115.1808994 -36.09221669,-115.1808993 -36.09220903,-115.1808993 -36.09220137,-115.1808992 -36.09219417,-115.1808992 -36.09218651,-115.1808992 -36.09217885,-115.1808991 -36.09217164,-115.1808991 -36.09216398,-115.1808991 -36.09215632,-115.180899 -36.09214911,-115.180899 -36.09214145,-115.1808989 -36.09213379,-115.1808989 -36.09212658,-115.1808989 -36.09211892,-115.1808988 -36.09211126,-115.1808988 -36.09210405,-115.1808988 -36.09209639,-115.1808987 -36.09208873,-115.1808987 -36.09208152,-115.1808986 -36.09207387,-115.1808986 -36.09206621,-115.1808986 -36.092059,-115.1808985 -36.09205134,-115.1808985 -36.09204368,-115.1808985 -36.09203647,-115.1808984 -36.09202881,-115.1808984 -36.09202115,-115.1808983 -36.09201394,-115.1808983 -36.09200628,-115.1808983 -36.09199862,-115.1808982 -36.09199141,-115.1808982 -36.09198375,-115.1808982 -36.09197609,-115.1808981 -36.09196888,-115.1808981 -36.09196122,-115.180898 -36.09195357,-115.180898 -36.09194636,-115.180898 -36.0919387,-115.1808979 -36.09193104,-115.1808979 -36.09192383,-115.1808978 -36.09191617,-115.1808978 -36.09190851,-115.1808978 -36.0919013,-115.1808977 -36.09189364,-115.1808977 -36.09188598,-115.1808977 -36.09187877,-115.1808976 -36.09187111,-115.1808976 -36.09186345,-115.1808975 -36.09185624,-115.1808975 -36.09184858,-115.1808975 -36.09184092,-115.1808974 -36.09183372,-115.1808974 -36.09182606,-115.1808974 -36.0918184,-115.1808973 -36.09181119,-115.1808973 -36.09180353,-115.1808972 -36.09179587,-115.1808972 -36.09178866,-115.1808972 -36.091781,-115.1808971 -36.09177334,-115.1808971 -36.09176613,-115.1808971 -36.09175847,-115.180897 -36.09175081,-115.180897 -36.0917436,-115.1808969 -36.09173594,-115.1808969 -36.09172828,-115.1808969 -36.09172108,-115.1808968 -36.09171342,-115.1808968 -36.09170576,-115.1808968 -36.09169855,-115.1808967 -36.09169089,-115.1808967 -36.09168323,-115.1808966 -36.09167602,-115.1808966 -36.09166836,-115.1808966 -36.0916607,-115.1808965 -36.09165349,-115.1808965 -36.09164583,-115.1808965 -36.09163817,-115.1808964 -36.09163096,-115.1808964 -36.0916233,-115.1808963 -36.09161564,-115.1808963 -36.09160844,-115.1808963 -36.09160078,-115.1808962 -36.09159312,-115.1808962 -36.09158591,-115.1808962 -36.09157825,-115.1808961 -36.09157059,-115.1808961 -36.09156338,-115.180896 -36.09155572,-115.180896 -36.09154806,-115.180896 -36.09154085,-115.1808959 -36.09153319,-115.1808959 -36.09152553,-115.1808958 -36.09151832,-115.1808958 -36.09151066,-115.1808958 -36.091503,-115.1808957 -36.09149579,-115.1808957 -36.09148813,-115.1808957 -36.09148048,-115.1808956 -36.09147327,-115.1808956 -36.09146561,-115.1808955 -36.09145795,-115.1808955 -36.09145074,-115.1808955 -36.09144308,-115.1808954 -36.09143542,-115.1808954 -36.09142821,-115.1808954 -36.09142055,-115.1808953 -36.09141289,-115.1808953 -36.09140568,-115.1808952 -36.09139802,-115.1808952 -36.09139036,-115.1808952 -36.09138315,-115.1808951 -36.09137549,-115.1808951 -36.09136784,-115.1808951 -36.09136063,-115.180895 -36.09135297,-115.180895 -36.09134531,-115.1808949 -36.0913381,-115.1808949 -36.09133044,-115.1808949 -36.09132278,-115.1808948 -36.09131557,-115.1808948 -36.09130791,-115.1808948 -36.09130025,-115.1808947 -36.09129304,-115.1808947 -36.09128538,-115.1808946 -36.09127772,-115.1808946 -36.09127051,-115.1808946 -36.09126285,-115.1808945 -36.09125519,-115.1808945 -36.09124799,-115.1808945 -36.09124033,-115.1808944 -36.09123267,-115.1808944 -36.09122546,-115.1808943 -36.0912178,-115.1808943 -36.09121014,-115.1808943 -36.09120293,-115.1808942 -36.09119527,-115.1808942 -36.09118761,-115.1808941 -36.0911804,-115.1808941 -36.09117274,-115.1808941 -36.09116508,-115.180894 -36.09115787,-115.180894 -36.09115021,-115.180894 -36.09114255,-115.1808939 -36.09113535,-115.1808939 -36.09112769,-115.1808938 -36.09112003,-115.1808938 -36.09111282,-115.1808938 -36.09110516,-115.1808937 -36.0910975,-115.1808937 -36.09109029,-115.1808937 -36.09108263,-115.1808936 -36.09107497,-115.1808936 -36.09106776,-115.1808935 -36.0910601,-115.1808935 -36.09105244,-115.1808935 -36.09104523,-115.1808934 -36.09103757,-115.1808934 -36.09102991,-115.1808934 -36.0910227,-115.1808933 -36.09101505,-115.1808933 -36.09100739,-115.1808932 -36.09100018,-115.1808932 -36.09099252,-115.1808932 -36.09098486,-115.1808931 -36.09097765,-115.1808931 -36.09096999,-115.1808931 -36.09096233,-115.180893 -36.09095512,-115.180893 -36.09094746,-115.1808929 -36.0909398,-115.1808929 -36.09093259,-115.1808929 -36.09092493,-115.1808928 -36.09091727,-115.1808928 -36.09091006,-115.1808928 -36.0909024,-115.1808927 -36.09089475,-115.1808927 -36.09088754,-115.1808926 -36.09087988,-115.1808926 -36.09087222,-115.1808926 -36.09086501,-115.1808925 -36.09085735,-115.1808925 -36.09084969,-115.1808925 -36.09084248,-115.1808924 -36.09083482,-115.1808924 -36.09082716,-115.1808923 -36.09081995,-115.1808923 -36.09081229,-115.1808923 -36.09080463,-115.1808922 -36.09079742,-115.1808922 -36.09078976,-115.1808921 -36.0907821,-115.1808921 -36.0907749,-115.1808921 -36.09076724,-115.180892 -36.09075958,-115.180892 -36.09075237,-115.180892 -36.09074471,-115.1808919 -36.09073705,-115.1808919 -36.09072984,-115.1808918 -36.09072218,-115.1808918 -36.09071452,-115.1808918 -36.09070731,-115.1808917 -36.09069965,-115.1808917 -36.09069199,-115.1808917 -36.09068478,-115.1808916 -36.09067712,-115.1808916 -36.09066946,-115.1808915 -36.09066226,-115.1808915 -36.0906546,-115.1808915 -36.09064694,-115.1808914 -36.09063973,-115.1808914 -36.09063207,-115.1808914 -36.09062441,-115.1808913 -36.0906172,-115.1808913 -36.09060954,-115.1808912 -36.09060188,-115.1808912 -36.09059467,-115.1808912 -36.09058701,-115.1808911 -36.09057935,-115.1808911 -36.09057214,-115.1808911 -36.09056448,-115.180891 -36.09055682,-115.180891 -36.09054961,-115.180891 -36.09054196,-115.180891 -36.0905343,-115.180891 -36.09052709,-115.180891 -36.09051943,-115.180891 -36.09051177,-115.1808911 -36.09050456,-115.1808911 -36.0904969,-115.1808911 -36.09048924,-115.1808911 -36.09048203,-115.1808911 -36.09047437,-115.1808911 -36.09046671,-115.1808911 -36.0904595,-115.1808911 -36.09045184,-115.1808911 -36.09044418,-115.1808911 -36.09043697,-115.1808911 -36.09042931,-115.1808912 -36.09042165,-115.1808912 -36.09041445,-115.1808912 -36.09040679,-115.1808912 -36.09039913,-115.1808912 -36.09039192,-115.1808912 -36.09038426,-115.1808912 -36.0903766,-115.1808912 -36.09036939,-115.1808912 -36.09036173,-115.1808912 -36.09035407,-115.1808912 -36.09034686,-115.1808912 -36.0903392,-115.1808913 -36.09033154,-115.1808913 -36.09032433,-115.1808913 -36.09031667,-115.1808913 -36.09030901,-115.1808913 -36.0903018,-115.1808913 -36.09029414,-115.1808913 -36.09028648,-115.1808913 -36.09027928,-115.1808913 -36.09027162,-115.1808913 -36.09026396,-115.1808913 -36.09025675,-115.1808913 -36.09024909,-115.1808914 -36.09024143,-115.1808914 -36.09023422,-115.1808914 -36.09022656,-115.1808914 -36.0902189,-115.1808914 -36.09021169,-115.1808914 -36.09020403,-115.1808914 -36.09019637,-115.1808914 -36.09018916,-115.1808914 -36.0901815,-115.1808914 -36.09017384,-115.1808914 -36.09016663,-115.1808915 -36.09015897,-115.1808915 -36.09015131,-115.1808915 -36.09014411,-115.1808915 -36.09013645,-115.1808915 -36.09012879,-115.1808915 -36.09012158,-115.1808915 -36.09011392,-115.1808915 -36.09010626,-115.1808915 -36.09009905,-115.1808915 -36.09009139,-115.1808915 -36.09008373,-115.1808915 -36.09007652,-115.1808916 -36.09006886,-115.1808916 -36.0900612,-115.1808916 -36.09005399,-115.1808916 -36.09004633,-115.1808916 -36.09003867,-115.1808916 -36.09003146,-115.1808916 -36.0900238,-115.1808916 -36.09001615,-115.1808916 -36.09000894,-115.1808916 -36.09000128,-115.1808916 -36.08999362,-115.1808916 -36.08998641,-115.1808917 -36.08997875,-115.1808917 -36.08997109,-115.1808917 -36.08996388,-115.1808917 -36.08995622,-115.1808917 -36.08994856,-115.1808917 -36.08994135,-115.1808917 -36.08993369,-115.1808917 -36.08992603,-115.1808917 -36.08991882,-115.1808917 -36.08991116,-115.1808917 -36.0899035,-115.1808918 -36.08989629,-115.1808918 -36.08988864,-115.1808918 -36.08988098,-115.1808918 -36.08987377,-115.1808918 -36.08986611,-115.1808918 -36.08985845,-115.1808918 -36.08985124,-115.1808918 -36.08984358,-115.1808918 -36.08983592,-115.1808918 -36.08982871,-115.1808918 -36.08982105,-115.1808918 -36.08981339,-115.1808919 -36.08980618,-115.1808919 -36.08979852,-115.1808919 -36.08979086,-115.1808919 -36.08978365,-115.1808919 -36.08977599,-115.1808919 -36.08976833,-115.1808919 -36.08976113,-115.1808919 -36.08975347,-115.1808919 -36.08974581,-115.1808919 -36.0897386,-115.1808919 -36.08973094,-115.1808919 -36.08972328,-115.180892 -36.08971607,-115.180892 -36.08970841,-115.180892 -36.08970075,-115.180892 -36.08969354,-115.180892 -36.08968588,-115.180892 -36.08967822,-115.180892 -36.08967101,-115.180892 -36.08966335,-115.180892 -36.08965569,-115.180892 -36.08964848,-115.180892 -36.08964082,-115.1808921 -36.08963316,-115.1808921 -36.08962596,-115.1808921 -36.0896183,-115.1808921 -36.08961064,-115.1808921 -36.08960343,-115.1808921 -36.08959577,-115.1808921 -36.08958811,-115.1808921 -36.0895809,-115.1808921 -36.08957324,-115.1808921 -36.08956558,-115.1808921 -36.08955837,-115.1808921 -36.08955071,-115.1808922 -36.08954305,-115.1808922 -36.08953584,-115.1808922 -36.08952818,-115.1808922 -36.08952052,-115.1808922 -36.08951331,-115.1808922 -36.08950565,-115.1808922 -36.08949799,-115.1808922 -36.08949079,-115.1808922 -36.08948313,-115.1808922 -36.08947547,-115.1808922 -36.08946826,-115.1808922 -36.0894606,-115.1808923 -36.08945294,-115.1808923 -36.08944573,-115.1808923 -36.08943807,-115.1808923 -36.08943041,-115.1808923 -36.0894232,-115.1808923 -36.08941554,-115.1808923 -36.08940788,-115.1808923 -36.08940067,-115.1808923 -36.08939301,-115.1808923 -36.08938535,-115.1808923 -36.08937814,-115.1808924 -36.08937048,-115.1808924 -36.08936283,-115.1808924 -36.08935562,-115.1808924 -36.08934796,-115.1808924 -36.0893403,-115.1808924 -36.08933309,-115.1808924 -36.08932543,-115.1808924 -36.08931777,-115.1808924 -36.08931056,-115.1808924 -36.0893029,-115.1808924 -36.08929524,-115.1808924 -36.08928803,-115.1808925 -36.08928037,-115.1808925 -36.08927271,-115.1808925 -36.0892655,-115.1808925 -36.08925784,-115.1808925 -36.08925018,-115.1808925 -36.08924297,-115.1808925 -36.08923532,-115.1808925 -36.08922766,-115.1808925 -36.08922045,-115.1808925 -36.08921279,-115.1808925 -36.08920513,-115.1808925 -36.08919792,-115.1808926 -36.08919026,-115.1808926 -36.0891826,-115.1808926 -36.08917539,-115.1808926 -36.08916773,-115.1808926 -36.08916007,-115.1808926 -36.08915286,-115.1808926 -36.0891452,-115.1808926 -36.08913754,-115.1808926 -36.08913033,-115.1808926 -36.08912267,-115.1808926 -36.08911501,-115.1808927 -36.08910781,-115.1808927 -36.08910015,-115.1808927 -36.08909249,-115.1808927 -36.08908528,-115.1808927 -36.08907762,-115.1808927 -36.08906996,-115.1808927 -36.08906275,-115.1808927 -36.08905509,-115.1808927 -36.08904743,-115.1808927 -36.08904022,-115.1808927 -36.08903256,-115.1808927 -36.0890249,-115.1808928 -36.08901769,-115.1808928 -36.08901003,-115.1808928 -36.08900237,-115.1808928 -36.08899516,-115.1808928 -36.0889875,-115.1808928 -36.08897984,-115.1808928 -36.08897264,-115.1808928 -36.08896498,-115.1808928 -36.08895732,-115.1808928 -36.08895011,-115.1808928 -36.08894245,-115.1808928 -36.08893479,-115.1808929 -36.08892758,-115.1808929 -36.08891992,-115.1808929 -36.08891226,-115.1808929 -36.08890505,-115.1808929 -36.08889739,-115.1808929 -36.08888973,-115.1808929 -36.08888252,-115.1808929 -36.08887486,-115.1808929 -36.0888672,-115.1808929 -36.08885999,-115.1808929 -36.08885233,-115.180893 -36.08884467,-115.180893 -36.08883747,-115.180893 -36.08882981,-115.180893 -36.08882215,-115.180893 -36.08881494,-115.180893 -36.08880728,-115.180893 -36.08879962,-115.180893 -36.08879241,-115.180893 -36.08878475,-115.180893 -36.08877709,-115.1808931 -36.08876988,-115.1808931 -36.08876222,-115.1808931 -36.08875456,-115.1808931 -36.08874735,-115.1808931 -36.08873969,-115.1808931 -36.08873203,-115.1808931 -36.08872482,-115.1808931 -36.08871716,-115.1808931 -36.08870951,-115.1808932 -36.0887023,-115.1808932 -36.08869464,-115.1808932 -36.08868698,-115.1808932 -36.08867977,-115.1808932 -36.08867211,-115.1808932 -36.08866445,-115.1808932 -36.08865724,-115.1808932 -36.08864958,-115.1808933 -36.08864192,-115.1808933 -36.08863471,-115.1808933 -36.08862705,-115.1808933 -36.08861939,-115.1808933 -36.08861218,-115.1808933 -36.08860452,-115.1808933 -36.08859686,-115.1808933 -36.08858965,-115.1808933 -36.088582,-115.1808934 -36.08857434,-115.1808934 -36.08856713,-115.1808934 -36.08855947,-115.1808934 -36.08855181,-115.1808934 -36.0885446,-115.1808934 -36.08853694,-115.1808934 -36.08852928,-115.1808934 -36.08852207,-115.1808935 -36.08851441,-115.1808935 -36.08850675,-115.1808935 -36.08849954,-115.1808935 -36.08849188,-115.1808935 -36.08848422,-115.1808935 -36.08847701,-115.1808935 -36.08846935,-115.1808935 -36.08846169,-115.1808935 -36.08845449,-115.1808936 -36.08844683,-115.1808936 -36.08843917,-115.1808936 -36.08843196,-115.1808936 -36.0884243,-115.1808936 -36.08841664,-115.1808936 -36.08840943,-115.1808936 -36.08840177,-115.1808936 -36.08839411,-115.1808937 -36.0883869,-115.1808937 -36.08837924,-115.1808937 -36.08837158,-115.1808937 -36.08836437,-115.1808937 -36.08835671,-115.1808937 -36.08834905,-115.1808937 -36.08834184,-115.1808937 -36.08833418,-115.1808937 -36.08832652,-115.1808938 -36.08831932,-115.1808938 -36.08831166,-115.1808938 -36.088304,-115.1808938 -36.08829679,-115.1808938 -36.08828913,-115.1808938 -36.08828147,-115.1808938 -36.08827426,-115.1808938 -36.0882666,-115.1808939 -36.08825894,-115.1808939 -36.08825173,-115.1808939 -36.08824407,-115.1808939 -36.08823641,-115.1808939 -36.0882292,-115.1808939 -36.08822154,-115.1808939 -36.08821388,-115.1808939 -36.08820667,-115.1808939 -36.08819901,-115.180894 -36.08819135,-115.180894 -36.08818415,-115.180894 -36.08817649,-115.180894 -36.08816883,-115.180894 -36.08816162,-115.180894 -36.08815396,-115.180894 -36.0881463,-115.180894 -36.08813909,-115.1808941 -36.08813143,-115.1808941 -36.08812377,-115.1808941 -36.08811656,-115.1808941 -36.0881089,-115.1808941 -36.08810124,-115.1808941 -36.08809403,-115.1808941 -36.08808637,-115.1808941 -36.08807871,-115.1808941 -36.0880715,-115.1808942 -36.08806384,-115.1808942 -36.08805619,-115.1808942 -36.08804898,-115.1808942 -36.08804132,-115.1808942 -36.08803366,-115.1808942 -36.08802645,-115.1808942 -36.08801879,-115.1808942 -36.08801113,-115.1808943 -36.08800392,-115.1808943 -36.08799626,-115.1808943 -36.0879886,-115.1808943 -36.08798139,-115.1808943 -36.08797373,-115.1808943 -36.08796607,-115.1808943 -36.08795886,-115.1808943 -36.0879512,-115.1808944 -36.08794354,-115.1808944 -36.08793633,-115.1808944 -36.08792867,-115.1808944 -36.08792102,-115.1808944 -36.08791381,-115.1808944 -36.08790615,-115.1808944 -36.08789849,-115.1808944 -36.08789128,-115.1808944 -36.08788362,-115.1808945 -36.08787596,-115.1808945 -36.08786875,-115.1808945 -36.08786109,-115.1808945 -36.08785343,-115.1808945 -36.08784622,-115.1808945 -36.08783856,-115.1808945 -36.0878309,-115.1808945 -36.08782369,-115.1808946 -36.08781603,-115.1808946 -36.08780837,-115.1808946 -36.08780116,-115.1808946 -36.08779351,-115.1808946 -36.08778585,-115.1808946 -36.08777864,-115.1808946 -36.08777098,-115.1808946 -36.08776332,-115.1808946 -36.08775611,-115.1808947 -36.08774845,-115.1808947 -36.08774079,-115.1808947 -36.08773358,-115.1808947 -36.08772592,-115.1808947 -36.08771826,-115.1808947 -36.08771105,-115.1808947 -36.08770339,-115.1808947 -36.08769573,-115.1808948 -36.08768852,-115.1808948 -36.08768086,-115.1808948 -36.0876732,-115.1808948 -36.087666,-115.1808948 -36.08765834,-115.1808948 -36.08765068,-115.1808948 -36.08764347,-115.1808948 -36.08763581,-115.1808948 -36.08762815,-115.1808949 -36.08762094,-115.1808949 -36.08761328,-115.1808949 -36.08760562,-115.1808949 -36.08759841,-115.1808949 -36.08759075,-115.1808949 -36.08758309,-115.1808949 -36.08757588,-115.1808949 -36.08756822,-115.180895 -36.08756056,-115.180895 -36.08755335,-115.180895 -36.08754569,-115.180895 -36.08753803,-115.180895 -36.08753083,-115.180895 -36.08752317,-115.180895 -36.08751551,-115.180895 -36.0875083,-115.180895 -36.08750064,-115.1808951 -36.08749298,-115.1808951 -36.08748577,-115.1808951 -36.08747811,-115.1808951 -36.08747045,-115.1808951 -36.08746324,-115.1808951 -36.08745558,-115.1808951 -36.08744792,-115.1808951 -36.08744071,-115.1808952 -36.08743305,-115.1808952 -36.08742539,-115.1808952 -36.08741818,-115.1808952 -36.08741052,-115.1808952 -36.08740286,-115.1808952 -36.08739566,-115.1808952 -36.087388,-115.1808952 -36.08738034,-115.1808952 -36.08737313,-115.1808953 -36.08736547,-115.1808953 -36.08735781,-115.1808953 -36.0873506,-115.1808953 -36.08734294,-115.1808953 -36.08733528,-115.1808953 -36.08732807,-115.1808953 -36.08732041,-115.1808953 -36.08731275,-115.1808954 -36.08730554,-115.1808954 -36.08729788,-115.1808954 -36.08729022,-115.1808954 -36.08728301,-115.1808954 -36.08727535,-115.1808954 -36.0872677,-115.1808954 -36.08726049,-115.1808954 -36.08725283,-115.1808954 -36.08724517,-115.1808955 -36.08723796,-115.1808955 -36.0872303,-115.1808955 -36.08722264,-115.1808955 -36.08721543,-115.1808955 -36.08720777,-115.1808955 -36.08720011,-115.1808955 -36.0871929,-115.1808955 -36.08718524,-115.1808956 -36.08717758,-115.1808956 -36.08717037,-115.1808956 -36.08716271,-115.1808956 -36.08715505,-115.1808956 -36.08714784,-115.1808956 -36.08714019,-115.1808956 -36.08713253,-115.1808956 -36.08712532,-115.1808956 -36.08711766,-115.1808957 -36.08711,-115.1808957 -36.08710279,-115.1808957 -36.08709513,-115.1808957 -36.08708747,-115.1808957 -36.08708026,-115.1808957 -36.0870726,-115.1808957 -36.08706494,-115.1808957 -36.08705773,-115.1808958 -36.08705007,-115.1808958 -36.08704241,-115.1808958 -36.0870352,-115.1808958 -36.08702754,-115.1808958 -36.08701988,-115.1808958 -36.08701267,-115.1808958 -36.08700502,-115.1808958 -36.08699736,-115.1808959 -36.08699015,-115.1808959 -36.08698249,-115.1808959 -36.08697483,-115.1808959 -36.08696762,-115.1808959 -36.08695996,-115.1808959 -36.0869523,-115.1808959 -36.08694509,-115.1808959 -36.08693743,-115.1808959 -36.08692977,-115.180896 -36.08692256,-115.180896 -36.0869149,-115.180896 -36.08690724,-115.180896 -36.08690003,-115.180896 -36.08689237,-115.1808961 -36.08688471,-115.1808961 -36.08687751,-115.1808961 -36.08686985,-115.1808962 -36.08686219,-115.1808962 -36.08685498,-115.1808963 -36.08684732,-115.1808963 -36.08683966,-115.1808964 -36.08683245,-115.1808964 -36.08682479,-115.1808964 -36.08681713,-115.1808965 -36.08680992,-115.1808965 -36.08680226,-115.1808966 -36.0867946,-115.1808966 -36.08678739,-115.1808967 -36.08677973,-115.1808967 -36.08677207,-115.1808968 -36.08676487,-115.1808968 -36.08675721,-115.1808968 -36.08674955,-115.1808969 -36.08674234,-115.1808969 -36.08673468,-115.180897 -36.08672702,-115.180897 -36.08671981,-115.1808971 -36.08671215,-115.1808971 -36.08670449,-115.1808972 -36.08669728,-115.1808972 -36.08668962,-115.1808972 -36.08668196,-115.1808973 -36.08667475,-115.1808973 -36.08666709,-115.1808974 -36.08665943,-115.1808974 -36.08665222,-115.1808975 -36.08664457,-115.1808975 -36.08663691,-115.1808975 -36.0866297,-115.1808976 -36.08662204,-115.1808976 -36.08661438,-115.1808977 -36.08660717,-115.1808977 -36.08659951,-115.1808978 -36.08659185,-115.1808978 -36.08658464,-115.1808978 -36.08657698,-115.1808979 -36.08656932,-115.1808979 -36.08656211,-115.180898 -36.08655445,-115.180898 -36.08654679,-115.1808981 -36.08653958,-115.1808981 -36.08653193,-115.1808982 -36.08652427,-115.1808982 -36.08651706,-115.1808982 -36.0865094,-115.1808983 -36.08650174,-115.1808983 -36.08649453,-115.1808984 -36.08648687,-115.1808984 -36.08647921,-115.1808985 -36.086472,-115.1808985 -36.08646434,-115.1808986 -36.08645668,-115.1808986 -36.08644947,-115.1808986 -36.08644181,-115.1808987 -36.08643415,-115.1808987 -36.08642694,-115.1808988 -36.08641928,-115.1808988 -36.08641163,-115.1808989 -36.08640442,-115.1808989 -36.08639676,-115.1808989 -36.0863891,-115.180899 -36.08638189,-115.180899 -36.08637423,-115.1808991 -36.08636657,-115.1808991 -36.08635936,-115.1808992 -36.0863517,-115.1808992 -36.08634404,-115.1808993 -36.08633683,-115.1808993 -36.08632917,-115.1808993 -36.08632151,-115.1808994 -36.0863143,-115.1808994 -36.08630664,-115.1808995 -36.08629898,-115.1808995 -36.08629178,-115.1808996 -36.08628412,-115.1808996 -36.08627646,-115.1808996 -36.08626925,-115.1808997 -36.08626159,-115.1808997 -36.08625393,-115.1808998 -36.08624672,-115.1808998 -36.08623906,-115.1808999 -36.0862314,-115.1808999 -36.08622419,-115.1809 -36.08621653,-115.1809 -36.08620887,-115.1809 -36.08620166,-115.1809001 -36.086194,-115.1809001 -36.08618634,-115.1809002 -36.08617914,-115.1809002 -36.08617148,-115.1809003 -36.08616382,-115.1809003 -36.08615661,-115.1809003 -36.08614895,-115.1809004 -36.08614129,-115.1809004 -36.08613408,-115.1809005 -36.08612642,-115.1809005 -36.08611876,-115.1809006 -36.08611155,-115.1809006 -36.08610389,-115.1809007 -36.08609623,-115.1809007 -36.08608902,-115.1809007 -36.08608136,-115.1809008 -36.0860737,-115.1809008 -36.0860665,-115.1809009 -36.08605884,-115.1809009 -36.08605118,-115.180901 -36.08604397,-115.180901 -36.08603631,-115.180901 -36.08602865,-115.1809011 -36.08602144,-115.1809011 -36.08601378,-115.1809012 -36.08600612,-115.1809012 -36.08599891,-115.1809013 -36.08599125,-115.1809013 -36.08598359,-115.1809014 -36.08597638,-115.1809014 -36.08596872,-115.1809014 -36.08596106,-115.1809015 -36.08595386,-115.1809015 -36.0859462,-115.1809016 -36.08593854,-115.1809016 -36.08593133,-115.1809017 -36.08592367,-115.1809017 -36.08591601,-115.1809017 -36.0859088,-115.1809018 -36.08590114,-115.1809018 -36.08589348,-115.1809019 -36.08588627,-115.1809019 -36.08587861,-115.180902 -36.08587095,-115.180902 -36.08586374,-115.1809021 -36.08585608,-115.1809021 -36.08584842,-115.1809021 -36.08584121,-115.1809022 -36.08583356,-115.1809022 -36.0858259,-115.1809023 -36.08581869,-115.1809023 -36.08581103,-115.1809024 -36.08580337,-115.1809024 -36.08579616,-115.1809024 -36.0857885,-115.1809025 -36.08578084,-115.1809025 -36.08577363,-115.1809026 -36.08576597,-115.1809026 -36.08575831,-115.1809027 -36.0857511,-115.1809027 -36.08574344,-115.1809028 -36.08573578,-115.1809028 -36.08572857,-115.1809028 -36.08572091,-115.1809029 -36.08571326,-115.1809029 -36.08570605,-115.180903 -36.08569839,-115.180903 -36.08569073,-115.1809031 -36.08568352,-115.1809031 -36.08567586,-115.1809031 -36.0856682,-115.1809032 -36.08566099,-115.1809032 -36.08565333,-115.1809033 -36.08564567,-115.1809033 -36.08563846,-115.1809034 -36.0856308,-115.1809034 -36.08562314,-115.1809035 -36.08561593,-115.1809035 -36.08560827,-115.1809035 -36.08560061,-115.1809036 -36.08559341,-115.1809036 -36.08558575,-115.1809037 -36.08557809,-115.1809037 -36.08557088,-115.1809038 -36.08556322,-115.1809038 -36.08555556,-115.1809038 -36.08554835,-115.1809039 -36.08554069,-115.1809039 -36.08553303,-115.180904 -36.08552582,-115.180904 -36.08551816,-115.1809041 -36.0855105,-115.1809041 -36.08550329,-115.1809042 -36.08549563,-115.1809042 -36.08548797,-115.1809042 -36.08548077,-115.1809043 -36.08547311,-115.1809043 -36.08546545,-115.1809044 -36.08545824,-115.1809044 -36.08545058,-115.1809045 -36.08544292,-115.1809045 -36.08543571,-115.1809045 -36.08542805,-115.1809046 -36.08542039,-115.1809046 -36.08541318,-115.1809047 -36.08540552,-115.1809047 -36.08539786,-115.1809048 -36.08539065,-115.1809048 -36.08538299,-115.1809049 -36.08537533,-115.1809049 -36.08536813,-115.1809049 -36.08536047,-115.180905 -36.08535281,-115.180905 -36.0853456,-115.1809051 -36.08533794,-115.1809051 -36.08533028,-115.1809052 -36.08532307,-115.1809052 -36.08531541,-115.1809052 -36.08530775,-115.1809053 -36.08530054,-115.1809053 -36.08529288,-115.1809054 -36.08528522,-115.1809054 -36.08527801,-115.1809055 -36.08527035,-115.1809055 -36.08526269,-115.1809056 -36.08525548,-115.1809056 -36.08524783,-115.1809056 -36.08524017,-115.1809057 -36.08523296,-115.1809057 -36.0852253,-115.1809058 -36.08521764,-115.1809058 -36.08521043,-115.1809059 -36.08520277,-115.1809059 -36.08519511,-115.1809059 -36.0851879,-115.180906 -36.08518024,-115.180906 -36.08517258,-115.1809061 -36.08516537,-115.1809061 -36.08515771,-115.1809062 -36.08515005,-115.1809062 -36.08514284,-115.1809063 -36.08513519,-115.1809063 -36.08512753,-115.1809063 -36.08512032,-115.1809064 -36.08511266,-115.1809064 -36.085105,-115.1809065 -36.08509779,-115.1809065 -36.08509013,-115.1809066 -36.08508247,-115.1809066 -36.08507526,-115.1809066 -36.0850676,-115.1809067 -36.08505994,-115.1809067 -36.08505273,-115.1809068 -36.08504507,-115.1809068 -36.08503741,-115.1809069 -36.0850302,-115.1809069 -36.08502254,-115.180907 -36.08501489,-115.180907 -36.08500768,-115.180907 -36.08500002,-115.1809071 -36.08499236,-115.1809071 -36.08498515,-115.1809072 -36.08497749,-115.1809072 -36.08496983,-115.1809073 -36.08496262,-115.1809073 -36.08495496,-115.1809073 -36.0849473,-115.1809074 -36.08494009,-115.1809074 -36.08493243,-115.1809075 -36.08492477,-115.1809075 -36.08491756,-115.1809076 -36.0849099,-115.1809076 -36.08490224,-115.1809077 -36.08489504,-115.1809077 -36.08488738,-115.1809077 -36.08487972,-115.1809078 -36.08487251,-115.1809078 -36.08486485,-115.1809079 -36.08485719,-115.1809079 -36.08484998,-115.180908 -36.08484232,-115.180908 -36.08483466,-115.180908 -36.08482745,-115.1809081 -36.08481979,-115.1809081 -36.08481213,-115.1809082 -36.08480492,-115.1809082 -36.08479726,-115.1809083 -36.0847896,-115.1809083 -36.0847824,-115.1809084 -36.08477474,-115.1809084 -36.08476708,-115.1809084 -36.08475987,-115.1809085 -36.08475221,-115.1809085 -36.08474455,-115.1809086 -36.08473734,-115.1809086 -36.08472968,-115.1809087 -36.08472202,-115.1809087 -36.08471481,-115.1809087 -36.08470715,-115.1809088 -36.08469949,-115.1809088 -36.08469228,-115.1809089 -36.08468462,-115.1809089 -36.08467696,-115.180909 -36.08466976,-115.180909 -36.0846621,-115.1809091 -36.08465444,-115.1809091 -36.08464723,-115.1809091 -36.08463957,-115.1809092 -36.08463191,-115.1809092 -36.0846247,-115.1809093 -36.08461704,-115.1809093 -36.08460938,-115.1809094 -36.08460217,-115.1809094 -36.08459451,-115.1809094 -36.08458685,-115.1809095 -36.08457964,-115.1809095 -36.08457198,-115.1809096 -36.08456432,-115.1809096 -36.08455711,-115.1809097 -36.08454946,-115.1809097 -36.0845418,-115.1809098 -36.08453459,-115.1809098 -36.08452693,-115.1809098 -36.08451927,-115.1809099 -36.08451206,-115.1809099 -36.0845044,-115.18091 -36.08449674,-115.18091 -36.08448953,-115.1809101 -36.08448187,-115.1809101 -36.08447421,-115.1809101 -36.084467,-115.1809102 -36.08445934,-115.1809102 -36.08445168,-115.1809103 -36.08444447,-115.1809103 -36.08443681,-115.1809104 -36.08442916,-115.1809104 -36.08442195,-115.1809105 -36.08441429,-115.1809105 -36.08440663,-115.1809105 -36.08439942,-115.1809106 -36.08439176,-115.1809106 -36.0843841,-115.1809107 -36.08437689,-115.1809107 -36.08436923,-115.1809108 -36.08436157,-115.1809108 -36.08435436,-115.1809108 -36.0843467,-115.1809109 -36.08433904,-115.1809109 -36.08433183,-115.180911 -36.08432417,-115.180911 -36.08431651,-115.1809111 -36.08430931,-115.1809111 -36.08430165,-115.1809112 -36.08429399,-115.1809112 -36.08428678,-115.1809112 -36.08427912,-115.1809113 -36.08427146,-115.1809113 -36.08426425,-115.1809114 -36.08425659,-115.1809114 -36.08424893,-115.1809115 -36.08424172,-115.1809115 -36.08423406,-115.1809115 -36.0842264,-115.1809116 -36.08421919,-115.1809116 -36.08421153,-115.1809117 -36.08420387,-115.1809117 -36.08419667,-115.1809118 -36.08418901,-115.1809118 -36.08418135,-115.1809119 -36.08417414,-115.1809119 -36.08416648,-115.1809119 -36.08415882,-115.180912 -36.08415161,-115.180912 -36.08414395,-115.1809121 -36.08413629,-115.1809121 -36.08412908,-115.1809122 -36.08412142,-115.1809122 -36.08411376,-115.1809123 -36.08410655,-115.1809123 -36.08409889,-115.1809123 -36.08409123,-115.1809124 -36.08408403,-115.1809124 -36.08407637,-115.1809125 -36.08406871,-115.1809125 -36.0840615,-115.1809126 -36.08405384,-115.1809126 -36.08404618,-115.1809126 -36.08403897,-115.1809127 -36.08403131,-115.1809127 -36.08402365,-115.1809128 -36.08401644,-115.1809128 -36.08400878,-115.1809129 -36.08400112,-115.1809129 -36.08399391,-115.1809129 -36.08398625,-115.180913 -36.08397859,-115.180913 -36.08397138,-115.1809131 -36.08396373,-115.1809131 -36.08395607,-115.1809132 -36.08394886,-115.1809132 -36.0839412,-115.1809133 -36.08393354,-115.1809133 -36.08392633,-115.1809133 -36.08391867,-115.1809134 -36.08391101,-115.1809134 -36.0839038,-115.1809135 -36.08389614,-115.1809135 -36.08388848,-115.1809136 -36.08388127,-115.1809136 -36.08387361,-115.1809136 -36.08386595,-115.1809137 -36.08385874,-115.1809137 -36.08385108,-115.1809138 -36.08384343,-115.1809138 -36.08383622,-115.1809139 -36.08382856,-115.1809139 -36.0838209,-115.180914 -36.08381369,-115.180914 -36.08380603,-115.180914 -36.08379837,-115.1809141 -36.08379116,-115.1809141 -36.0837835,-115.1809142 -36.08377584,-115.1809142 -36.08376863,-115.1809143 -36.08376097,-115.1809143 -36.08375331,-115.1809144 -36.0837461,-115.1809144 -36.08373844,-115.1809144 -36.08373078,-115.1809145 -36.08372358,-115.1809145 -36.08371592,-115.1809146 -36.08370826,-115.1809146 -36.08370105,-115.1809147 -36.08369339,-115.1809147 -36.08368573,-115.1809147 -36.08367852,-115.1809148 -36.08367086,-115.1809148 -36.0836632,-115.1809149 -36.08365599,-115.1809149 -36.08364833,-115.180915 -36.08364067,-115.180915 -36.08363346,-115.180915 -36.0836258,-115.1809151 -36.08361814,-115.1809151 -36.08361094,-115.1809152 -36.08360328,-115.1809152 -36.08359562,-115.1809153 -36.08358841,-115.1809153 -36.08358075,-115.1809154 -36.08357309,-115.1809154 -36.08356588,-115.1809154 -36.08355822,-115.1809155 -36.08355056,-115.1809155 -36.08354335,-115.1809156 -36.08353569,-115.1809156 -36.08352803,-115.1809157 -36.08352082,-115.1809157 -36.08351316,-115.1809158 -36.0835055,-115.1809158 -36.0834983,-115.1809158 -36.08349064,-115.1809159 -36.08348298,-115.1809159 -36.08347577,-115.180916 -36.08346811,-115.180916 -36.08346045,-115.1809161 -36.08345324,-115.1809161 -36.08344558,-115.1809161 -36.08343792,-115.1809162 -36.08343071,-115.1809162 -36.08342305,-115.1809163 -36.08341539,-115.1809163 -36.08340818,-115.1809164 -36.08340052,-115.1809164 -36.08339286,-115.1809165 -36.08338565,-115.1809165 -36.083378,-115.1809165 -36.08337034,-115.1809166 -36.08336313,-115.1809166 -36.08335547,-115.1809167 -36.08334781,-115.1809167 -36.0833406,-115.1809168 -36.08333294,-115.1809168 -36.08332528,-115.1809168 -36.08331807,-115.1809169 -36.08331041,-115.1809169 -36.08330275,-115.180917 -36.08329554,-115.180917 -36.08328788,-115.1809171 -36.08328022,-115.1809171 -36.08327301,-115.1809172 -36.08326535,-115.1809172 -36.0832577,-115.1809172 -36.08325049,-115.1809173 -36.08324283,-115.1809173 -36.08323517,-115.1809174 -36.08322796,-115.1809174 -36.0832203,-115.1809175 -36.08321264,-115.1809175 -36.08320543,-115.1809175 -36.08319777,-115.1809176 -36.08319011,-115.1809176 -36.0831829,-115.1809177 -36.08317524,-115.1809177 -36.08316758,-115.1809178 -36.08316037,-115.1809178 -36.08315271,-115.1809179 -36.08314505,-115.1809179 -36.08313785,-115.1809179 -36.08313019,-115.180918 -36.08312253,-115.180918 -36.08311532,-115.1809181 -36.08310766,-115.1809181 -36.0831,-115.1809182 -36.08309279,-115.1809182 -36.08308513,-115.1809182 -36.08307747,-115.1809183 -36.08307026,-115.1809183 -36.0830626,-115.1809184 -36.08305494,-115.1809184 -36.08304773,-115.1809185 -36.08304007,-115.1809185 -36.08303241,-115.1809186 -36.08302521,-115.1809186 -36.08301755,-115.1809186 -36.08300989,-115.1809187 -36.08300268,-115.1809187 -36.08299502,-115.1809188 -36.08298736,-115.1809188 -36.08298015,-115.1809189 -36.08297249,-115.1809189 -36.08296483,-115.1809189 -36.08295762,-115.180919 -36.08294996,-115.180919 -36.0829423,-115.1809191 -36.08293509,-115.1809191 -36.08292743,-115.1809192 -36.08291977,-115.1809192 -36.08291256,-115.1809193 -36.08290491,-115.1809193 -36.08289725,-115.1809193 -36.08289004,-115.1809194 -36.08288238,-115.1809194 -36.08287472,-115.1809195 -36.08286751,-115.1809195 -36.08285985,-115.1809196 -36.08285219,-115.1809196 -36.08284498,-115.1809196 -36.08283732,-115.1809197 -36.08282966,-115.1809197 -36.08282245,-115.1809198 -36.08281479,-115.1809198 -36.08280713,-115.1809199 -36.08279992,-115.1809199 -36.08279226,-115.18092 -36.08278461,-115.18092 -36.0827774,-115.18092 -36.08276974,-115.1809201 -36.08276208,-115.1809201 -36.08275487,-115.1809202 -36.08274721,-115.1809202 -36.08273955,-115.1809203 -36.08273234,-115.1809203 -36.08272468,-115.1809203 -36.08271702,-115.1809204 -36.08270981,-115.1809204 -36.08270215,-115.1809205 -36.08269449,-115.1809205 -36.08268728,-115.1809206 -36.08267962,-115.1809206 -36.08267196,-115.1809207 -36.08266476,-115.1809207 -36.0826571,-115.1809207 -36.08264944,-115.1809208 -36.08264223,-115.1809208 -36.08263457,-115.1809209 -36.08262691,-115.1809209 -36.0826197,-115.180921 -36.08261204,-115.180921 -36.08260438,-115.180921 -36.08259717,-115.1809211 -36.08258951,-115.1809211 -36.08258185,-115.1809212 -36.08257464,-115.1809212 -36.08256698,-115.1809213 -36.08255932,-115.1809213 -36.08255212,-115.1809214 -36.08254446,-115.1809214 -36.0825368,-115.1809214 -36.08252959,-115.1809215 -36.08252193,-115.1809215 -36.08251427,-115.1809216 -36.08250706,-115.1809216 -36.0824994,-115.1809217 -36.08249174,-115.1809217 -36.08248453,-115.1809217 -36.08247687,-115.1809218 -36.08246921,-115.1809218 -36.082462,-115.1809219 -36.08245434,-115.1809219 -36.08244668,-115.180922 -36.08243948,-115.180922 -36.08243182,-115.1809221 -36.08242416,-115.1809221 -36.08241695,-115.1809221 -36.08240929,-115.1809222 -36.08240163,-115.1809222 -36.08239442,-115.1809223 -36.08238676,-115.1809223 -36.0823791,-115.1809224 -36.08237189,-115.1809224 -36.08236423,-115.1809224 -36.08235657,-115.1809225 -36.08234936,-115.1809225 -36.0823417,-115.1809226 -36.08233404,-115.1809226 -36.08232683,-115.1809227 -36.08231918,-115.1809227 -36.08231152,-115.1809228 -36.08230431,-115.1809228 -36.08229665,-115.1809228 -36.08228899,-115.1809229 -36.08228178,-115.1809229 -36.08227412,-115.180923 -36.08226646,-115.180923 -36.08225925,-115.1809231 -36.08225159,-115.1809231 -36.08224393,-115.1809231 -36.08223672,-115.1809232 -36.08222906,-115.1809232 -36.0822214,-115.1809233 -36.08221419,-115.1809233 -36.08220653,-115.1809234 -36.08219888,-115.1809234 -36.08219167,-115.1809235 -36.08218401,-115.1809235 -36.08217635,-115.1809235 -36.08216914,-115.1809236 -36.08216148,-115.1809236 -36.08215382,-115.1809237 -36.08214661,-115.1809237 -36.08213895,-115.1809238 -36.08213129,-115.1809238 -36.08212408,-115.1809238 -36.08211642,-115.1809239 -36.08210876,-115.1809239 -36.08210155,-115.180924 -36.08209389,-115.180924 -36.08208623,-115.1809241 -36.08207903,-115.1809241 -36.08207137,-115.1809242 -36.08206371,-115.1809242 -36.0820565,-115.1809242 -36.08204884,-115.1809243 -36.08204118,-115.1809243 -36.08203397,-115.1809244 -36.08202631,-115.1809244 -36.08201865,-115.1809245 -36.08201144,-115.1809245 -36.08200378,-115.1809245 -36.08199612,-115.1809246 -36.08198891,-115.1809246 -36.08198125,-115.1809247 -36.08197359,-115.1809247 -36.08196639,-115.1809248 -36.08195873,-115.1809248 -36.08195107,-115.1809249 -36.08194386,-115.1809249 -36.0819362,-115.1809249 -36.08192854,-115.180925 -36.08192133,-115.180925 -36.08191367,-115.1809251 -36.08190601,-115.1809251 -36.0818988,-115.1809252 -36.08189114,-115.1809252 -36.08188348,-115.1809252 -36.08187627,-115.1809253 -36.08186861,-115.1809253 -36.08186095,-115.1809254 -36.08185374,-115.1809254 -36.08184609,-115.1809255 -36.08183843,-115.1809255 -36.08183122,-115.1809256 -36.08182356,-115.1809256 -36.0818159,-115.1809256 -36.08180869,-115.1809257 -36.08180103,-115.1809257 -36.08179337,-115.1809258 -36.08178616,-115.1809258 -36.0817785,-115.1809259 -36.08177084,-115.1809259 -36.08176363,-115.1809259 -36.08175597,-115.180926 -36.08174831,-115.180926 -36.0817411,-115.1809261 -36.08173344,-115.1809261 -36.08172579,-115.1809262 -36.08171858,-115.1809262 -36.08171092,-115.1809263 -36.08170326,-115.1809263 -36.08169605,-115.1809263 -36.08168839,-115.1809264 -36.08168073,-115.1809264 -36.08167352,-115.1809265 -36.08166586,-115.1809265 -36.0816582,-115.1809266 -36.08165099,-115.1809266 -36.08164333,-115.1809266 -36.08163567,-115.1809267 -36.08162846,-115.1809267 -36.0816208,-115.1809268 -36.08161314,-115.1809268 -36.08160594,-115.1809269 -36.08159828,-115.1809269 -36.08159062,-115.180927 -36.08158341,-115.180927 -36.08157575,-115.180927 -36.08156809,-115.180927 -36.08156088,-115.1809269 -36.08155322,-115.1809269 -36.08154556,-115.1809269 -36.08153835,-115.1809269 -36.08153069,-115.1809269 -36.08152303,-115.1809269 -36.08151582,-115.1809268 -36.08150816,-115.1809268 -36.0815005,-115.1809268 -36.08149329,-115.1809268 -36.08148563,-115.1809268 -36.08147798,-115.1809268 -36.08147077,-115.1809267 -36.08146311,-115.1809267 -36.08145545,-115.1809267 -36.08144824,-115.1809267 -36.08144058,-115.1809267 -36.08143292,-115.1809266 -36.08142571,-115.1809266 -36.08141805,-115.1809266 -36.08141039,-115.1809266 -36.08140318,-115.1809266 -36.08139552,-115.1809266 -36.08138786,-115.1809265 -36.08138065,-115.1809265 -36.08137299,-115.1809265 -36.08136533,-115.1809265 -36.08135812,-115.1809265 -36.08135046,-115.1809264 -36.08134281,-115.1809264 -36.0813356,-115.1809264 -36.08132794,-115.1809264 -36.08132028,-115.1809264 -36.08131307,-115.1809264 -36.08130541,-115.1809263 -36.08129775,-115.1809263 -36.08129054,-115.1809263 -36.08128288,-115.1809263 -36.08127522,-115.1809263 -36.08126801,-115.1809263 -36.08126035,-115.1809262 -36.08125269,-115.1809262 -36.08124548,-115.1809262 -36.08123782,-115.1809262 -36.08123016,-115.1809262 -36.08122295,-115.1809261 -36.08121529,-115.1809261 -36.08120764,-115.1809261 -36.08120043,-115.1809261 -36.08119277,-115.1809261 -36.08118511,-115.1809261 -36.0811779,-115.180926 -36.08117024,-115.180926 -36.08116258,-115.180926 -36.08115537,-115.180926 -36.08114771,-115.180926 -36.08114005,-115.180926 -36.08113284,-115.1809259 -36.08112518,-115.1809259 -36.08111752,-115.1809259 -36.08111031,-115.1809259 -36.08110265,-115.1809259 -36.08109499,-115.1809258 -36.08108778,-115.1809258 -36.08108013,-115.1809258 -36.08107247,-115.1809258 -36.08106526,-115.1809258 -36.0810576,-115.1809258 -36.08104994,-115.1809257 -36.08104273,-115.1809257 -36.08103507,-115.1809257 -36.08102741,-115.1809257 -36.0810202,-115.1809257 -36.08101254,-115.1809257 -36.08100488,-115.1809256 -36.08099767,-115.1809256 -36.08099001,-115.1809256 -36.08098235,-115.1809256 -36.08097514,-115.1809256 -36.08096748,-115.1809255 -36.08095982,-115.1809255 -36.08095261,-115.1809255 -36.08094496,-115.1809255 -36.0809373,-115.1809255 -36.08093009,-115.1809255 -36.08092243,-115.1809254 -36.08091477,-115.1809254 -36.08090756,-115.1809254 -36.0808999,-115.1809254 -36.08089224,-115.1809254 -36.08088503,-115.1809253 -36.08087737,-115.1809253 -36.08086971,-115.1809253 -36.0808625,-115.1809253 -36.08085484,-115.1809253 -36.08084718,-115.1809253 -36.08083997,-115.1809252 -36.08083231,-115.1809252 -36.08082465,-115.1809252 -36.08081745,-115.1809252 -36.08080979,-115.1809252 -36.08080213,-115.1809252 -36.08079492,-115.1809251 -36.08078726,-115.1809251 -36.0807796,-115.1809251 -36.08077239,-115.1809251 -36.08076473,-115.1809251 -36.08075707,-115.180925 -36.08074986,-115.180925 -36.0807422,-115.180925 -36.08073454,-115.180925 -36.08072733,-115.180925 -36.08071967,-115.180925 -36.08071201,-115.1809249 -36.0807048,-115.1809249 -36.08069714,-115.1809249 -36.08068948,-115.1809249 -36.08068228,-115.1809249 -36.08067462,-115.1809249 -36.08066696,-115.1809248 -36.08065975,-115.1809248 -36.08065209,-115.1809248 -36.08064443,-115.1809248 -36.08063722,-115.1809248 -36.08062956,-115.1809247 -36.0806219,-115.1809247 -36.08061469,-115.1809247 -36.08060703,-115.1809247 -36.08059937,-115.1809247 -36.08059216,-115.1809247 -36.0805845,-115.1809246 -36.08057684,-115.1809246 -36.08056963,-115.1809246 -36.08056197,-115.1809246 -36.08055431,-115.1809246 -36.08054711,-115.1809245 -36.08053945,-115.1809245 -36.08053179,-115.1809245 -36.08052458,-115.1809245 -36.08051692,-115.1809245 -36.08050926,-115.1809245 -36.08050205,-115.1809244 -36.08049439,-115.1809244 -36.08048673,-115.1809244 -36.08047952,-115.1809244 -36.08047186,-115.1809244 -36.0804642,-115.1809244 -36.08045699,-115.1809243 -36.08044933,-115.1809243 -36.08044167,-115.1809243 -36.08043446,-115.1809243 -36.0804268,-115.1809243 -36.08041914,-115.1809242 -36.08041194,-115.1809242 -36.08040428,-115.1809242 -36.08039662,-115.1809242 -36.08038941,-115.1809242 -36.08038175,-115.1809242 -36.08037409,-115.1809241 -36.08036688,-115.1809241 -36.08035922,-115.1809241 -36.08035156,-115.1809241 -36.08034435,-115.1809241 -36.08033669,-115.1809241 -36.08032903,-115.180924 -36.08032182,-115.180924 -36.08031416,-115.180924 -36.0803065,-115.180924 -36.08029929,-115.180924 -36.08029163,-115.1809239 -36.08028397,-115.1809239 -36.08027677,-115.1809239 -36.08026911,-115.1809239 -36.08026145,-115.1809239 -36.08025424,-115.1809239 -36.08024658,-115.1809238 -36.08023892,-115.1809238 -36.08023171,-115.1809238 -36.08022405,-115.1809238 -36.08021639,-115.1809238 -36.08020918,-115.1809238 -36.08020152,-115.1809237 -36.08019386,-115.1809237 -36.08018665,-115.1809237 -36.08017899,-115.1809237 -36.08017133,-115.1809237 -36.08016412,-115.1809236 -36.08015646,-115.1809236 -36.0801488,-115.1809236 -36.0801416,-115.1809236 -36.08013394,-115.1809236 -36.08012628,-115.1809236 -36.08011907,-115.1809235 -36.08011141,-115.1809235 -36.08010375,-115.1809235 -36.08009654,-115.1809235 -36.08008888,-115.1809235 -36.08008122,-115.1809234 -36.08007401,-115.1809234 -36.08006635,-115.1809234 -36.08005869,-115.1809234 -36.08005148,-115.1809234 -36.08004382,-115.1809234 -36.08003616,-115.1809233 -36.08002895,-115.1809233 -36.08002129,-115.1809233 -36.08001363,-115.1809233 -36.08000643,-115.1809233 -36.07999877,-115.1809233 -36.07999111,-115.1809232 -36.0799839,-115.1809232 -36.07997624,-115.1809232 -36.07996858,-115.1809232 -36.07996137,-115.1809232 -36.07995371,-115.1809231 -36.07994605,-115.1809231 -36.07993884,-115.1809231 -36.07993118,-115.1809231 -36.07992352,-115.1809231 -36.07991631,-115.1809231 -36.07990865,-115.180923 -36.07990099,-115.180923 -36.07989378,-115.180923 -36.07988612,-115.180923 -36.07987846,-115.180923 -36.07987126,-115.180923 -36.0798636,-115.1809229 -36.07985594,-115.1809229 -36.07984873,-115.1809229 -36.07984107,-115.1809229 -36.07983341,-115.1809229 -36.0798262,-115.1809228 -36.07981854,-115.1809228 -36.07981088,-115.1809228 -36.07980367,-115.1809228 -36.07979601,-115.1809228 -36.07978835,-115.1809228 -36.07978114,-115.1809227 -36.07977348,-115.1809227 -36.07976582,-115.1809227 -36.07975861,-115.1809227 -36.07975095,-115.1809227 -36.07974329,-115.1809226 -36.07973609,-115.1809226 -36.07972843,-115.1809226 -36.07972077,-115.1809226 -36.07971356,-115.1809226 -36.0797059,-115.1809226 -36.07969824,-115.1809225 -36.07969103,-115.1809225 -36.07968337,-115.1809225 -36.07967571,-115.1809225 -36.0796685,-115.1809225 -36.07966084,-115.1809225 -36.07965318,-115.1809224 -36.07964597,-115.1809224 -36.07963831,-115.1809224 -36.07963065,-115.1809224 -36.07962344,-115.1809224 -36.07961578,-115.1809223 -36.07960812,-115.1809223 -36.07960092,-115.1809223 -36.07959326,-115.1809223 -36.0795856,-115.1809223 -36.07957839,-115.1809223 -36.07957073,-115.1809222 -36.07956307,-115.1809222 -36.07955586,-115.1809222 -36.0795482,-115.1809222 -36.07954054,-115.1809222 -36.07953333,-115.1809222 -36.07952567,-115.1809221 -36.07951801,-115.1809221 -36.0795108,-115.1809221 -36.07950314,-115.1809221 -36.07949548,-115.1809221 -36.07948827,-115.180922 -36.07948061,-115.180922 -36.07947295,-115.180922 -36.07946575,-115.180922 -36.07945809,-115.180922 -36.07945043,-115.180922 -36.07944322,-115.1809219 -36.07943556,-115.1809219 -36.0794279,-115.1809219 -36.07942069,-115.1809219 -36.07941303,-115.1809219 -36.07940537,-115.1809218 -36.07939816,-115.1809218 -36.0793905,-115.1809218 -36.07938284,-115.1809218 -36.07937563,-115.1809218 -36.07936797,-115.1809218 -36.07936031,-115.1809217 -36.0793531,-115.1809217 -36.07934544,-115.1809217 -36.07933779,-115.1809217 -36.07933058,-115.1809217 -36.07932292,-115.1809217 -36.07931526,-115.1809216 -36.07930805,-115.1809216 -36.07930039,-115.1809216 -36.07929273,-115.1809216 -36.07928552,-115.1809216 -36.07927786,-115.1809215 -36.0792702,-115.1809215 -36.07926299,-115.1809215 -36.07925533,-115.1809215 -36.07924767,-115.1809215 -36.07924046,-115.1809215 -36.0792328,-115.1809214 -36.07922514,-115.1809214 -36.07921793,-115.1809214 -36.07921027,-115.1809214 -36.07920262,-115.1809214 -36.07919541,-115.1809214 -36.07918775,-115.1809213 -36.07918009,-115.1809213 -36.07917288,-115.1809213 -36.07916522,-115.1809213 -36.07915756,-115.1809213 -36.07915035,-115.1809212 -36.07914269,-115.1809212 -36.07913503,-115.1809212 -36.07912782,-115.1809212 -36.07912016,-115.1809212 -36.0791125,-115.1809212 -36.07910529,-115.1809211 -36.07909763,-115.1809211 -36.07908997,-115.1809211 -36.07908276,-115.1809211 -36.0790751,-115.1809211 -36.07906745,-115.180921 -36.07906024,-115.180921 -36.07905258,-115.180921 -36.07904492,-115.180921 -36.07903771,-115.180921 -36.07903005,-115.180921 -36.07902239,-115.1809209 -36.07901518,-115.1809209 -36.07900752,-115.1809209 -36.07899986,-115.1809209 -36.07899265,-115.1809209 -36.07898499,-115.1809209 -36.07897733,-115.1809208 -36.07897012,-115.1809208 -36.07896246,-115.1809208 -36.0789548,-115.1809208 -36.07894759,-115.1809208 -36.07893993,-115.1809207 -36.07893228,-115.1809207 -36.07892507,-115.1809207 -36.07891741,-115.1809207 -36.07890975,-115.1809207 -36.07890254,-115.1809207 -36.07889488,-115.1809206 -36.07888722,-115.1809206 -36.07888001,-115.1809206 -36.07887235,-115.1809206 -36.07886469,-115.1809206 -36.07885748,-115.1809206 -36.07884982,-115.1809205 -36.07884216,-115.1809205 -36.07883495,-115.1809205 -36.07882729,-115.1809205 -36.07881963,-115.1809205 -36.07881242,-115.1809204 -36.07880476,-115.1809204 -36.07879711,-115.1809204 -36.0787899,-115.1809204 -36.07878224,-115.1809204 -36.07877458,-115.1809204 -36.07876737,-115.1809203 -36.07875971,-115.1809203 -36.07875205,-115.1809203 -36.07874484,-115.1809203 -36.07873718,-115.1809203 -36.07872952,-115.1809202 -36.07872231,-115.1809202 -36.07871465,-115.1809202 -36.07870699,-115.1809202 -36.07869978,-115.1809202 -36.07869212,-115.1809202 -36.07868446,-115.1809201 -36.07867725,-115.1809201 -36.07866959,-115.1809201 -36.07866194,-115.1809201 -36.07865473,-115.1809201 -36.07864707,-115.1809201 -36.07863941,-115.18092 -36.0786322,-115.18092 -36.07862454,-115.18092 -36.07861688,-115.1809202 -36.07860967,-115.1809203 -36.07860201,-115.1809205 -36.07859435,-115.1809206 -36.07858715,-115.1809208 -36.07857949,-115.1809209 -36.07857183,-115.1809211 -36.07856462,-115.1809213 -36.07855696,-115.1809214 -36.0785493,-115.1809216 -36.0785421,-115.1809217 -36.07853444,-115.1809219 -36.07852678,-115.1809221 -36.07851957,-115.1809222 -36.07851191,-115.1809224 -36.07850425,-115.1809226 -36.07849705,-115.1809227 -36.07848939,-115.1809229 -36.07848173,-115.180923 -36.07847452,-115.1809232 -36.07846686,-115.1809234 -36.0784592,-115.1809235 -36.078452,-115.1809237 -36.07844434,-115.1809238 -36.07843668,-115.180924 -36.07842947,-115.1809241 -36.07842181,-115.1809243 -36.07841415,-115.1809245 -36.07840695,-115.1809246 -36.07839929,-115.1809248 -36.07839163,-115.180925 -36.07838442,-115.1809251 -36.07837676,-115.1809253 -36.0783691,-115.1809254 -36.0783619,-115.1809256 -36.07835424,-115.1809258 -36.07834658,-115.1809259 -36.07833937,-115.1809261 -36.07833171,-115.1809262 -36.07832405,-115.1809264 -36.07831685,-115.1809266 -36.07830919,-115.1809267 -36.07830153,-115.1809269 -36.07829432,-115.180927 -36.07828666,-115.1809272 -36.078279,-115.1809274 -36.0782718,-115.1809275 -36.07826414,-115.1809277 -36.07825648,-115.1809278 -36.07824927,-115.180928 -36.07824161,-115.1809282 -36.07823395,-115.1809283 -36.07822675,-115.1809285 -36.07821909,-115.1809286 -36.07821143,-115.1809288 -36.07820422,-115.180929 -36.07819656,-115.1809291 -36.0781889,-115.1809293 -36.0781817,-115.1809294 -36.07817404,-115.1809296 -36.07816638,-115.1809298 -36.07815917,-115.1809299 -36.07815151,-115.1809301 -36.07814385,-115.1809302 -36.07813665,-115.1809304 -36.07812899,-115.1809306 -36.07812133,-115.1809307 -36.07811412,-115.1809309 -36.07810646,-115.180931 -36.0780988,-115.1809312 -36.0780916,-115.1809314 -36.07808394,-115.1809315 -36.07807628,-115.1809317 -36.07806907,-115.1809318 -36.07806141,-115.180932 -36.07805375,-115.1809322 -36.07804655,-115.1809323 -36.07803889,-115.1809325 -36.07803123,-115.1809326 -36.07802402,-115.1809328 -36.07801636,-115.180933 -36.0780087,-115.1809331 -36.0780015,-115.1809333 -36.07799384,-115.1809334 -36.07798618,-115.1809336 -36.07797897,-115.1809338 -36.07797131,-115.1809339 -36.07796365,-115.1809341 -36.07795645,-115.1809342 -36.07794879,-115.1809344 -36.07794113,-115.1809346 -36.07793392,-115.1809347 -36.07792626,-115.1809349 -36.0779186,-115.180935 -36.0779114,-115.1809352 -36.07790374,-115.1809354 -36.07789608,-115.1809355 -36.07788887,-115.1809357 -36.07788121,-115.1809358 -36.07787355,-115.180936 -36.07786635,-115.1809362 -36.07785869,-115.1809363 -36.07785103,-115.1809365 -36.07784382,-115.1809366 -36.07783616,-115.1809368 -36.0778285,-115.180937 -36.0778213,-115.1809371 -36.07781364,-115.1809373 -36.07780598,-115.1809375 -36.07779877,-115.1809376 -36.07779111,-115.1809378 -36.07778345,-115.1809379 -36.07777625,-115.1809381 -36.07776859,-115.1809382 -36.07776093,-115.1809384 -36.07775372,-115.1809386 -36.07774606,-115.1809387 -36.0777384,-115.1809389 -36.0777312,-115.180939 -36.07772354,-115.1809392 -36.07771588,-115.1809394 -36.07770867,-115.1809395 -36.07770101,-115.1809397 -36.07769335,-115.1809399 -36.07768615,-115.18094 -36.07767849,-115.1809402 -36.07767083,-115.1809403 -36.07766362,-115.1809405 -36.07765596,-115.1809407 -36.0776483,-115.1809408 -36.0776411,-115.180941 -36.07763344,-115.1809411 -36.07762578,-115.1809413 -36.07761857,-115.1809414 -36.07761091,-115.1809416 -36.07760325,-115.1809418 -36.07759605,-115.1809419 -36.07758839,-115.1809421 -36.07758073,-115.1809423 -36.07757352,-115.1809424 -36.07756586,-115.1809426 -36.0775582,-115.1809427 -36.077551,-115.1809429 -36.07754334,-115.1809431 -36.07753568,-115.1809432 -36.07752847,-115.1809434 -36.07752081,-115.1809435 -36.07751315,-115.1809437 -36.07750595,-115.1809439 -36.07749829,-115.180944 -36.07749063,-115.1809439 -36.07748342,-115.1809439 -36.07747576,-115.1809438 -36.0774681,-115.1809437 -36.07746089,-115.1809436 -36.07745323,-115.1809436 -36.07744557,-115.1809435 -36.07743836,-115.1809434 -36.0774307,-115.1809434 -36.07742305,-115.1809433 -36.07741584,-115.1809432 -36.07740818,-115.1809431 -36.07740052,-115.1809431 -36.07739331,-115.180943 -36.07738565,-115.1809429 -36.07737799,-115.1809428 -36.07737078,-115.1809428 -36.07736312,-115.1809427 -36.07735546,-115.1809426 -36.07734825,-115.1809426 -36.07734059,-115.1809425 -36.07733293,-115.1809424 -36.07732573,-115.1809424 -36.07731807,-115.1809423 -36.07731041,-115.1809422 -36.0773032,-115.1809421 -36.07729554,-115.1809421 -36.07728788,-115.180942 -36.07728067,-115.1809419 -36.07727301,-115.1809419 -36.07726535,-115.1809418 -36.07725814,-115.1809417 -36.07725048,-115.1809416 -36.07724282,-115.1809416 -36.07723562,-115.1809415 -36.07722796,-115.1809414 -36.0772203,-115.1809413 -36.07721309,-115.1809413 -36.07720543,-115.1809412 -36.07719777,-115.1809411 -36.07719056,-115.1809411 -36.0771829,-115.180941 -36.07717524,-115.1809409 -36.07716803,-115.1809409 -36.07716037,-115.1809408 -36.07715271,-115.1809407 -36.0771455,-115.1809406 -36.07713784,-115.1809406 -36.07713019,-115.1809405 -36.07712298,-115.1809404 -36.07711532,-115.1809404 -36.07710766,-115.1809403 -36.07710045,-115.1809402 -36.07709279,-115.1809401 -36.07708513,-115.1809401 -36.07707792,-115.18094 -36.07707026,-115.1809399 -36.0770626,-115.1809399 -36.07705539,-115.1809398 -36.07704773,-115.1809397 -36.07704007,-115.1809396 -36.07703287,-115.1809396 -36.07702521,-115.1809395 -36.07701755,-115.1809394 -36.07701034,-115.1809394 -36.07700268,-115.1809393 -36.07699502,-115.1809392 -36.07698781,-115.1809391 -36.07698015,-115.1809391 -36.07697249,-115.180939 -36.07696528,-115.1809389 -36.07695762,-115.1809389 -36.07694996,-115.1809388 -36.07694275,-115.1809387 -36.0769351,-115.1809386 -36.07692744,-115.1809386 -36.07692023,-115.1809385 -36.07691257,-115.1809384 -36.07690491,-115.1809384 -36.0768977,-115.1809383 -36.07689004,-115.1809382 -36.07688238,-115.1809381 -36.07687517,-115.1809381 -36.07686751,-115.180938 -36.07685985,-115.1809381 -36.07685264,-115.1809381 -36.07684498,-115.1809382 -36.07683732,-115.1809382 -36.07683012,-115.1809383 -36.07682246,-115.1809383 -36.0768148,-115.1809384 -36.07680759,-115.1809384 -36.07679993,-115.1809385 -36.07679227,-115.1809385 -36.07678506,-115.1809386 -36.0767774,-115.1809387 -36.07676974,-115.1809387 -36.07676253,-115.1809388 -36.07675487,-115.1809388 -36.07674721,-115.1809389 -36.07674,-115.1809389 -36.07673234,-115.180939 -36.07672468,-115.180939 -36.07671748,-115.1809391 -36.07670982,-115.1809391 -36.07670216,-115.1809392 -36.07669495,-115.1809392 -36.07668729,-115.1809393 -36.07667963,-115.1809394 -36.07667242,-115.1809394 -36.07666476,-115.1809395 -36.0766571,-115.1809395 -36.07664989,-115.1809396 -36.07664223,-115.1809396 -36.07663457,-115.1809397 -36.07662736,-115.1809397 -36.0766197,-115.1809398 -36.07661204,-115.1809398 -36.07660484,-115.1809399 -36.07659718,-115.18094 -36.07658952,-115.18094 -36.07658231,-115.1809401 -36.07657465,-115.1809401 -36.07656699,-115.1809402 -36.07655978,-115.1809402 -36.07655212,-115.1809403 -36.07654446,-115.1809403 -36.07653725,-115.1809404 -36.07652959,-115.1809404 -36.07652193,-115.1809405 -36.07651472,-115.1809405 -36.07650706,-115.1809406 -36.0764994,-115.1809407 -36.0764922,-115.1809407 -36.07648454,-115.1809408 -36.07647688,-115.1809408 -36.07646967,-115.1809409 -36.07646201,-115.1809409 -36.07645435,-115.180941 -36.07644714,-115.180941 -36.07643948,-115.1809411 -36.07643182,-115.1809411 -36.07642461,-115.1809412 -36.07641695,-115.1809413 -36.07640929,-115.1809413 -36.07640208,-115.1809414 -36.07639442,-115.1809414 -36.07638676,-115.1809415 -36.07637956,-115.1809415 -36.0763719,-115.1809416 -36.07636424,-115.1809416 -36.07635703,-115.1809417 -36.07634937,-115.1809417 -36.07634171,-115.1809418 -36.0763345,-115.1809418 -36.07632684,-115.1809419 -36.07631918,-115.180942 -36.07631197,-115.180942 -36.07630431,-115.1809421 -36.07629665,-115.1809421 -36.07628944,-115.1809422 -36.07628178,-115.1809422 -36.07627412,-115.1809423 -36.07626692,-115.1809423 -36.07625926,-115.1809424 -36.0762516,-115.1809424 -36.07624439,-115.1809425 -36.07623673,-115.1809426 -36.07622907,-115.1809426 -36.07622186,-115.1809427 -36.0762142,-115.1809427 -36.07620654,-115.1809428 -36.07619933,-115.1809428 -36.07619167,-115.1809429 -36.07618401,-115.1809429 -36.0761768,-115.180943 -36.07616914,-115.180943 -36.07616148,-115.1809431 -36.07615428,-115.1809431 -36.07614662,-115.1809432 -36.07613896,-115.1809433 -36.07613175,-115.1809433 -36.07612409,-115.1809434 -36.07611643,-115.1809434 -36.07610922,-115.1809435 -36.07610156,-115.1809435 -36.0760939,-115.1809436 -36.07608669,-115.1809436 -36.07607903,-115.1809437 -36.07607137,-115.1809437 -36.07606416,-115.1809438 -36.0760565,-115.1809439 -36.07604884,-115.1809439 -36.07604164,-115.180944 -36.07603398,-115.180944 -36.07602632,-115.1809441 -36.07601911,-115.1809441 -36.07601145,-115.1809442 -36.07600379,-115.1809442 -36.07599658,-115.1809443 -36.07598892,-115.1809443 -36.07598126,-115.1809444 -36.07597405,-115.1809444 -36.07596639,-115.1809445 -36.07595873,-115.1809446 -36.07595152,-115.1809446 -36.07594386,-115.1809447 -36.0759362,-115.1809447 -36.075929,-115.1809448 -36.07592134,-115.1809448 -36.07591368,-115.1809449 -36.07590647,-115.1809449 -36.07589881,-115.180945 -36.07589115,-115.180945 -36.07588394,-115.1809451 -36.07587628,-115.1809452 -36.07586862,-115.1809452 -36.07586141,-115.1809453 -36.07585375,-115.1809453 -36.07584609,-115.1809454 -36.07583888,-115.1809454 -36.07583122,-115.1809455 -36.07582356,-115.1809455 -36.07581636,-115.1809456 -36.0758087,-115.1809456 -36.07580104,-115.1809457 -36.07579383,-115.1809458 -36.07578617,-115.1809458 -36.07577851,-115.1809459 -36.0757713,-115.1809459 -36.07576364,-115.180946 -36.07575598,-115.180946 -36.07574877,-115.1809461 -36.07574111,-115.1809461 -36.07573345,-115.1809462 -36.07572624,-115.1809462 -36.07571858,-115.1809463 -36.07571092,-115.1809463 -36.07570372,-115.1809464 -36.07569606,-115.1809465 -36.0756884,-115.1809465 -36.07568119,-115.1809466 -36.07567353,-115.1809466 -36.07566587,-115.1809467 -36.07565866,-115.1809467 -36.075651,-115.1809468 -36.07564334,-115.1809468 -36.07563613,-115.1809469 -36.07562847,-115.1809469 -36.07562081,-115.180947 -36.0756136,-115.1809471 -36.07560594,-115.1809471 -36.07559828,-115.1809472 -36.07559108,-115.1809472 -36.07558342,-115.1809473 -36.07557576,-115.1809473 -36.07556855,-115.1809474 -36.07556089,-115.1809474 -36.07555323,-115.1809475 -36.07554602,-115.1809475 -36.07553836,-115.1809476 -36.0755307,-115.1809476 -36.07552349,-115.1809477 -36.07551583,-115.1809478 -36.07550817,-115.1809478 -36.07550096,-115.1809479 -36.0754933,-115.1809479 -36.07548564,-115.180948 -36.07547844,-115.180948 -36.07547078,-115.180948 -36.07546312,-115.1809481 -36.07545591,-115.1809481 -36.07544825,-115.1809481 -36.07544059,-115.1809482 -36.07543338,-115.1809482 -36.07542572,-115.1809482 -36.07541806,-115.1809482 -36.07541085,-115.1809483 -36.07540319,-115.1809483 -36.07539553,-115.1809483 -36.07538832,-115.1809484 -36.07538066,-115.1809484 -36.075373,-115.1809484 -36.07536579,-115.1809484 -36.07535813,-115.1809485 -36.07535047,-115.1809485 -36.07534327,-115.1809485 -36.07533561,-115.1809486 -36.07532795,-115.1809486 -36.07532074,-115.1809486 -36.07531308,-115.1809486 -36.07530542,-115.1809487 -36.07529821,-115.1809487 -36.07529055,-115.1809487 -36.07528289,-115.1809488 -36.07527568,-115.1809488 -36.07526802,-115.1809488 -36.07526036,-115.1809488 -36.07525315,-115.1809489 -36.07524549,-115.1809489 -36.07523783,-115.1809489 -36.07523062,-115.180949 -36.07522296,-115.180949 -36.07521531,-115.180949 -36.0752081,-115.180949 -36.07520044,-115.1809491 -36.07519278,-115.1809491 -36.07518557,-115.1809491 -36.07517791,-115.1809492 -36.07517025,-115.1809492 -36.07516304,-115.1809492 -36.07515538,-115.1809492 -36.07514772,-115.1809493 -36.07514051,-115.1809493 -36.07513285,-115.1809493 -36.07512519,-115.1809494 -36.07511798,-115.1809494 -36.07511032,-115.1809494 -36.07510266,-115.1809494 -36.07509545,-115.1809495 -36.07508779,-115.1809495 -36.07508014,-115.1809495 -36.07507293,-115.1809496 -36.07506527,-115.1809496 -36.07505761,-115.1809496 -36.0750504,-115.1809496 -36.07504274,-115.1809497 -36.07503508,-115.1809497 -36.07502787,-115.1809497 -36.07502021,-115.1809498 -36.07501255,-115.1809498 -36.07500534,-115.1809498 -36.07499768,-115.1809498 -36.07499002,-115.1809499 -36.07498281,-115.1809499 -36.07497515,-115.1809499 -36.07496749,-115.18095 -36.07496028,-115.18095 -36.07495263,-115.18095 -36.07494497,-115.18095 -36.07493776,-115.1809501 -36.0749301,-115.1809501 -36.07492244,-115.1809501 -36.07491523,-115.1809502 -36.07490757,-115.1809502 -36.07489991,-115.1809502 -36.0748927,-115.1809502 -36.07488504,-115.1809503 -36.07487738,-115.1809503 -36.07487017,-115.1809503 -36.07486251,-115.1809504 -36.07485485,-115.1809504 -36.07484764,-115.1809504 -36.07483998,-115.1809504 -36.07483232,-115.1809505 -36.07482512,-115.1809505 -36.07481746,-115.1809505 -36.0748098,-115.1809506 -36.07480259,-115.1809506 -36.07479493,-115.1809506 -36.07478727,-115.1809506 -36.07478006,-115.1809507 -36.0747724,-115.1809507 -36.07476474,-115.1809507 -36.07475753,-115.1809508 -36.07474987,-115.1809508 -36.07474221,-115.1809508 -36.074735,-115.1809508 -36.07472734,-115.1809509 -36.07471968,-115.1809509 -36.07471247,-115.1809509 -36.07470481,-115.180951 -36.07469715,-115.180951 -36.07468995,-115.180951 -36.07468229,-115.180951 -36.07467463,-115.1809511 -36.07466742,-115.1809511 -36.07465976,-115.1809511 -36.0746521,-115.1809512 -36.07464489,-115.1809512 -36.07463723,-115.1809512 -36.07462957,-115.1809513 -36.07462236,-115.1809513 -36.0746147,-115.1809513 -36.07460704,-115.1809513 -36.07459983,-115.1809514 -36.07459217,-115.1809514 -36.07458451,-115.1809514 -36.0745773,-115.1809514 -36.07456964,-115.1809515 -36.07456198,-115.1809515 -36.07455478,-115.1809515 -36.07454712,-115.1809516 -36.07453946,-115.1809516 -36.07453225,-115.1809516 -36.07452459,-115.1809517 -36.07451693,-115.1809517 -36.07450972,-115.1809517 -36.07450206,-115.1809517 -36.0744944,-115.1809518 -36.07448719,-115.1809518 -36.07447953,-115.1809518 -36.07447187,-115.1809519 -36.07446466,-115.1809519 -36.074457,-115.1809519 -36.07444934,-115.1809519 -36.07444213,-115.180952 -36.07443447,-115.180952 -36.07442681,-115.180952 -36.07441961,-115.1809521 -36.07441195,-115.1809521 -36.07440429,-115.1809521 -36.07439708,-115.1809521 -36.07438942,-115.1809522 -36.07438176,-115.1809522 -36.07437455,-115.1809522 -36.07436689,-115.1809523 -36.07435923,-115.1809523 -36.07435202,-115.1809523 -36.07434436,-115.1809523 -36.0743367,-115.1809524 -36.07432949,-115.1809524 -36.07432183,-115.1809524 -36.07431417,-115.1809525 -36.07430696,-115.1809525 -36.0742993,-115.1809525 -36.07429165,-115.1809525 -36.07428444,-115.1809526 -36.07427678,-115.1809526 -36.07426912,-115.1809526 -36.07426191,-115.1809527 -36.07425425,-115.1809527 -36.07424659,-115.1809527 -36.07423938,-115.1809527 -36.07423172,-115.1809528 -36.07422406,-115.1809528 -36.07421685,-115.1809528 -36.07420919,-115.1809529 -36.07420153,-115.1809529 -36.07419432,-115.1809529 -36.07418666,-115.1809529 -36.074179,-115.180953 -36.07417179,-115.180953 -36.07416413,-115.180953 -36.07415648,-115.1809531 -36.07414927,-115.1809531 -36.07414161,-115.1809531 -36.07413395,-115.1809531 -36.07412674,-115.1809532 -36.07411908,-115.1809532 -36.07411142,-115.1809532 -36.07410421,-115.1809533 -36.07409655,-115.1809533 -36.07408889,-115.1809533 -36.07408168,-115.1809533 -36.07407402,-115.1809534 -36.07406636,-115.1809534 -36.07405915,-115.1809534 -36.07405149,-115.1809535 -36.07404383,-115.1809535 -36.07403662,-115.1809535 -36.07402897,-115.1809535 -36.07402131,-115.1809536 -36.0740141,-115.1809536 -36.07400644,-115.1809536 -36.07399878,-115.1809537 -36.07399157,-115.1809537 -36.07398391,-115.1809537 -36.07397625,-115.1809537 -36.07396904,-115.1809538 -36.07396138,-115.1809538 -36.07395372,-115.1809538 -36.07394651,-115.1809539 -36.07393885,-115.1809539 -36.07393119,-115.1809539 -36.07392398,-115.1809539 -36.07391632,-115.180954 -36.07390866,-115.180954 -36.07390145,-115.180954 -36.0738938,-115.1809541 -36.07388614,-115.1809541 -36.07387893,-115.1809541 -36.07387127,-115.1809541 -36.07386361,-115.1809542 -36.0738564,-115.1809542 -36.07384874,-115.1809542 -36.07384108,-115.1809543 -36.07383387,-115.1809543 -36.07382621,-115.1809543 -36.07381855,-115.1809543 -36.07381134,-115.1809544 -36.07380368,-115.1809544 -36.07379602,-115.1809544 -36.07378881,-115.1809545 -36.07378115,-115.1809545 -36.07377349,-115.1809545 -36.07376629,-115.1809545 -36.07375863,-115.1809546 -36.07375097,-115.1809546 -36.07374376,-115.1809546 -36.0737361,-115.1809547 -36.07372844,-115.1809547 -36.07372123,-115.1809547 -36.07371357,-115.1809547 -36.07370591,-115.1809548 -36.0736987,-115.1809548 -36.07369104,-115.1809548 -36.07368338,-115.1809549 -36.07367617,-115.1809549 -36.07366851,-115.1809549 -36.07366085,-115.1809549 -36.07365364,-115.180955 -36.07364598,-115.180955 -36.07363832,-115.180955 -36.07363112,-115.1809551 -36.07362346,-115.1809551 -36.0736158,-115.1809551 -36.07360859,-115.1809551 -36.07360093,-115.1809552 -36.07359327,-115.1809552 -36.07358606,-115.1809552 -36.0735784,-115.1809553 -36.07357074,-115.1809553 -36.07356353,-115.1809553 -36.07355587,-115.1809553 -36.07354821,-115.1809554 -36.073541,-115.1809554 -36.07353334,-115.1809554 -36.07352568,-115.1809555 -36.07351847,-115.1809555 -36.07351081,-115.1809555 -36.07350315,-115.1809555 -36.07349595,-115.1809556 -36.07348829,-115.1809556 -36.07348063,-115.1809556 -36.07347342,-115.1809557 -36.07346576,-115.1809557 -36.0734581,-115.1809557 -36.07345089,-115.1809557 -36.07344323,-115.1809558 -36.07343557,-115.1809558 -36.07342836,-115.1809558 -36.0734207,-115.1809559 -36.07341304,-115.1809559 -36.07340583,-115.1809559 -36.07339817,-115.1809559 -36.07339051,-115.180956 -36.0733833,-115.180956 -36.07337564,-115.180956 -36.07336798,-115.180956 -36.07336078,-115.180956 -36.07335312,-115.180956 -36.07334546,-115.180956 -36.07333825,-115.180956 -36.07333059,-115.180956 -36.07332293,-115.1809559 -36.07331572,-115.1809559 -36.07330806,-115.1809559 -36.0733004,-115.1809559 -36.07329319,-115.1809559 -36.07328553,-115.1809559 -36.07327787,-115.1809559 -36.07327066,-115.1809559 -36.073263,-115.1809559 -36.07325534,-115.1809559 -36.07324813,-115.1809559 -36.07324047,-115.1809559 -36.07323281,-115.1809559 -36.07322561,-115.1809559 -36.07321795,-115.1809559 -36.07321029,-115.1809559 -36.07320308,-115.1809558 -36.07319542,-115.1809558 -36.07318776,-115.1809558 -36.07318055,-115.1809558 -36.07317289,-115.1809558 -36.07316523,-115.1809558 -36.07315802,-115.1809558 -36.07315036,-115.1809558 -36.0731427,-115.1809558 -36.07313549,-115.1809558 -36.07312783,-115.1809558 -36.07312017,-115.1809558 -36.07311296,-115.1809558 -36.0731053,-115.1809558 -36.07309764,-115.1809558 -36.07309043,-115.1809558 -36.07308278,-115.1809557 -36.07307512,-115.1809557 -36.07306791,-115.1809557 -36.07306025,-115.1809557 -36.07305259,-115.1809557 -36.07304538,-115.1809557 -36.07303772,-115.1809557 -36.07303006,-115.1809557 -36.07302285,-115.1809557 -36.07301519,-115.1809557 -36.07300753,-115.1809557 -36.07300032,-115.1809557 -36.07299266,-115.1809557 -36.072985,-115.1809557 -36.07297779,-115.1809557 -36.07297013,-115.1809557 -36.07296247,-115.1809556 -36.07295526,-115.1809556 -36.0729476,-115.1809556 -36.07293994,-115.1809556 -36.07293274,-115.1809556 -36.07292508,-115.1809556 -36.07291742,-115.1809556 -36.07291021,-115.1809556 -36.07290255,-115.1809556 -36.07289489,-115.1809556 -36.07288768,-115.1809556 -36.07288002,-115.1809556 -36.07287236,-115.1809556 -36.07286515,-115.1809556 -36.07285749,-115.1809556 -36.07284983,-115.1809556 -36.07284262,-115.1809555 -36.07283496,-115.1809555 -36.0728273,-115.1809555 -36.07282009,-115.1809555 -36.07281243,-115.1809555 -36.07280477,-115.1809555 -36.07279757,-115.1809555 -36.07278991,-115.1809555 -36.07278225,-115.1809555 -36.07277504,-115.1809555 -36.07276738,-115.1809555 -36.07275972,-115.1809555 -36.07275251,-115.1809555 -36.07274485,-115.1809555 -36.07273719,-115.1809555 -36.07272998,-115.1809555 -36.07272232,-115.1809554 -36.07271466,-115.1809554 -36.07270745,-115.1809554 -36.07269979,-115.1809554 -36.07269213,-115.1809554 -36.07268492,-115.1809554 -36.07267726,-115.1809554 -36.0726696,-115.1809554 -36.07266239,-115.1809554 -36.07265474,-115.1809554 -36.07264708,-115.1809554 -36.07263987,-115.1809554 -36.07263221,-115.1809554 -36.07262455,-115.1809554 -36.07261734,-115.1809554 -36.07260968,-115.1809554 -36.07260202,-115.1809553 -36.07259481,-115.1809553 -36.07258715,-115.1809553 -36.07257949,-115.1809553 -36.07257228,-115.1809553 -36.07256462,-115.1809553 -36.07255696,-115.1809553 -36.07254975,-115.1809553 -36.07254209,-115.1809553 -36.07253443,-115.1809553 -36.07252722,-115.1809553 -36.07251956,-115.1809553 -36.07251191,-115.1809553 -36.0725047,-115.1809553 -36.07249704,-115.1809553 -36.07248938,-115.1809552 -36.07248217,-115.1809552 -36.07247451,-115.1809552 -36.07246685,-115.1809552 -36.07245964,-115.1809552 -36.07245198,-115.1809552 -36.07244432,-115.1809552 -36.07243711,-115.1809552 -36.07242945,-115.1809552 -36.07242179,-115.1809552 -36.07241458,-115.1809552 -36.07240692,-115.1809552 -36.07239926,-115.1809552 -36.07239205,-115.1809552 -36.07238439,-115.1809552 -36.07237673,-115.1809552 -36.07236953,-115.1809551 -36.07236187,-115.1809551 -36.07235421,-115.1809551 -36.072347,-115.1809551 -36.07233934,-115.1809551 -36.07233168,-115.1809551 -36.07232447,-115.1809551 -36.07231681,-115.1809551 -36.07230915,-115.1809551 -36.07230194,-115.1809551 -36.07229428,-115.1809551 -36.07228662,-115.1809551 -36.07227941,-115.1809551 -36.07227175,-115.1809551 -36.07226409,-115.1809551 -36.07225688,-115.1809551 -36.07224922,-115.180955 -36.07224156,-115.180955 -36.07223436,-115.180955 -36.0722267,-115.180955 -36.07221904,-115.180955 -36.07221183,-115.180955 -36.07220417,-115.180955 -36.07219651,-115.180955 -36.0721893,-115.180955 -36.07218164,-115.180955 -36.07217398,-115.180955 -36.07216677,-115.180955 -36.07215911,-115.180955 -36.07215145,-115.180955 -36.07214424,-115.180955 -36.07213658,-115.180955 -36.07212892,-115.1809549 -36.07212171,-115.1809549 -36.07211405,-115.1809549 -36.07210639,-115.1809549 -36.07209918,-115.1809549 -36.07209152,-115.1809549 -36.07208387,-115.1809549 -36.07207666,-115.1809549 -36.072069,-115.1809549 -36.07206134,-115.1809549 -36.07205413,-115.1809549 -36.07204647,-115.1809549 -36.07203881,-115.1809549 -36.0720316,-115.1809549 -36.07202394,-115.1809549 -36.07201628,-115.1809549 -36.07200907,-115.1809548 -36.07200141,-115.1809548 -36.07199375,-115.1809548 -36.07198654,-115.1809548 -36.07197888,-115.1809548 -36.07197122,-115.1809548 -36.07196401,-115.1809548 -36.07195635,-115.1809548 -36.07194869,-115.1809548 -36.07194149,-115.1809548 -36.07193383,-115.1809548 -36.07192617,-115.1809548 -36.07191896,-115.1809548 -36.0719113,-115.1809548 -36.07190364,-115.1809548 -36.07189643,-115.1809548 -36.07188877,-115.1809547 -36.07188111,-115.1809547 -36.0718739,-115.1809547 -36.07186624,-115.1809547 -36.07185858,-115.1809547 -36.07185137,-115.1809547 -36.07184371,-115.1809547 -36.07183605,-115.1809547 -36.07182884,-115.1809547 -36.07182118,-115.1809547 -36.07181352,-115.1809547 -36.07180632,-115.1809547 -36.07179866,-115.1809547 -36.071791,-115.1809547 -36.07178379,-115.1809547 -36.07177613,-115.1809547 -36.07176847,-115.1809546 -36.07176126,-115.1809546 -36.0717536,-115.1809546 -36.07174594,-115.1809546 -36.07173873,-115.1809546 -36.07173107,-115.1809546 -36.07172341,-115.1809546 -36.0717162,-115.1809546 -36.07170854,-115.1809546 -36.07170088,-115.1809546 -36.07169367,-115.1809546 -36.07168601,-115.1809546 -36.07167835,-115.1809546 -36.07167114,-115.1809546 -36.07166348,-115.1809546 -36.07165583,-115.1809546 -36.07164862,-115.1809545 -36.07164096,-115.1809545 -36.0716333,-115.1809545 -36.07162609,-115.1809545 -36.07161843,-115.1809545 -36.07161077,-115.1809545 -36.07160356,-115.1809545 -36.0715959,-115.1809545 -36.07158824,-115.1809545 -36.07158103,-115.1809545 -36.07157337,-115.1809545 -36.07156571,-115.1809545 -36.0715585,-115.1809545 -36.07155084,-115.1809545 -36.07154318,-115.1809545 -36.07153597,-115.1809544 -36.07152831,-115.1809544 -36.07152065,-115.1809544 -36.07151345,-115.1809544 -36.07150579,-115.1809544 -36.07149813,-115.1809544 -36.07149092,-115.1809544 -36.07148326,-115.1809544 -36.0714756,-115.1809544 -36.07146839,-115.1809544 -36.07146073,-115.1809544 -36.07145307,-115.1809544 -36.07144586,-115.1809544 -36.0714382,-115.1809544 -36.07143054,-115.1809544 -36.07142333,-115.1809544 -36.07141567,-115.1809543 -36.07140801,-115.1809543 -36.0714008,-115.1809543 -36.07139314,-115.1809543 -36.07138548,-115.1809543 -36.07137828,-115.1809543 -36.07137062,-115.1809543 -36.07136296,-115.1809543 -36.07135575,-115.1809543 -36.07134809,-115.1809543 -36.07134043,-115.1809543 -36.07133322,-115.1809543 -36.07132556,-115.1809543 -36.0713179,-115.1809543 -36.07131069,-115.1809543 -36.07130303,-115.1809543 -36.07129537,-115.1809542 -36.07128816,-115.1809542 -36.0712805,-115.1809542 -36.07127284,-115.1809542 -36.07126563,-115.1809542 -36.07125797,-115.1809542 -36.07125031,-115.1809542 -36.0712431,-115.1809542 -36.07123544,-115.1809542 -36.07122779,-115.1809542 -36.07122058,-115.1809542 -36.07121292,-115.1809542 -36.07120526,-115.1809542 -36.07119805,-115.1809542 -36.07119039,-115.1809542 -36.07118273,-115.1809542 -36.07117552,-115.1809541 -36.07116786,-115.1809541 -36.0711602,-115.1809541 -36.07115299,-115.1809541 -36.07114533,-115.1809541 -36.07113767,-115.1809541 -36.07113046,-115.1809541 -36.0711228,-115.1809541 -36.07111514,-115.1809541 -36.07110793,-115.1809541 -36.07110027,-115.1809541 -36.07109261,-115.1809541 -36.07108541,-115.1809541 -36.07107775,-115.1809541 -36.07107009,-115.1809541 -36.07106288,-115.1809541 -36.07105522,-115.180954 -36.07104756,-115.180954 -36.07104035,-115.180954 -36.07103269,-115.180954 -36.07102503,-115.180954 -36.07101782,-115.180954 -36.07101016,-115.180954 -36.0710025,-115.180954 -36.07099529,-115.180954 -36.07098763,-115.180954 -36.07097997,-115.180954 -36.07097276,-115.180954 -36.0709651,-115.180954 -36.07095744,-115.180954 -36.07095024,-115.180954 -36.07094258,-115.180954 -36.07093492,-115.1809539 -36.07092771,-115.1809539 -36.07092005,-115.1809539 -36.07091239,-115.1809539 -36.07090518,-115.1809539 -36.07089752,-115.1809539 -36.07088986,-115.1809539 -36.07088265,-115.1809539 -36.07087499,-115.1809539 -36.07086733,-115.1809539 -36.07086012,-115.1809539 -36.07085246,-115.1809539 -36.0708448,-115.1809539 -36.07083759,-115.1809539 -36.07082993,-115.1809539 -36.07082227,-115.1809539 -36.07081506,-115.1809538 -36.0708074,-115.1809538 -36.07079975,-115.1809538 -36.07079254,-115.1809538 -36.07078488,-115.1809538 -36.07077722,-115.1809538 -36.07077001,-115.1809538 -36.07076235,-115.1809538 -36.07075469,-115.1809538 -36.07074748,-115.1809538 -36.07073982,-115.1809538 -36.07073216,-115.1809538 -36.07072495,-115.1809538 -36.07071729,-115.1809538 -36.07070963,-115.1809538 -36.07070242,-115.1809538 -36.07069476,-115.1809537 -36.0706871,-115.1809537 -36.07067989,-115.1809537 -36.07067223,-115.1809537 -36.07066457,-115.1809537 -36.07065737,-115.1809537 -36.07064971,-115.1809537 -36.07064205,-115.1809537 -36.07063484,-115.1809537 -36.07062718,-115.1809537 -36.07061952,-115.1809537 -36.07061231,-115.1809537 -36.07060465,-115.1809537 -36.07059699,-115.1809537 -36.07058978,-115.1809537 -36.07058212,-115.1809536 -36.07057446,-115.1809536 -36.07056725,-115.1809536 -36.07055959,-115.1809536 -36.07055193,-115.1809536 -36.07054472,-115.1809536 -36.07053706,-115.1809536 -36.0705294,-115.1809536 -36.0705222,-115.1809536 -36.07051454,-115.1809536 -36.07050688,-115.1809536 -36.07049967,-115.1809536 -36.07049201,-115.1809536 -36.07048435,-115.1809536 -36.07047714,-115.1809536 -36.07046948,-115.1809536 -36.07046182,-115.1809535 -36.07045461,-115.1809535 -36.07044695,-115.1809535 -36.07043929,-115.1809535 -36.07043208,-115.1809535 -36.07042442,-115.1809535 -36.07041676,-115.1809535 -36.07040955,-115.1809535 -36.07040189,-115.1809535 -36.07039423,-115.1809535 -36.07038702,-115.1809535 -36.07037936,-115.1809535 -36.07037171,-115.1809535 -36.0703645,-115.1809535 -36.07035684,-115.1809535 -36.07034918,-115.1809535 -36.07034197,-115.1809534 -36.07033431,-115.1809534 -36.07032665,-115.1809534 -36.07031944,-115.1809534 -36.07031178,-115.1809534 -36.07030412,-115.1809534 -36.07029691,-115.1809534 -36.07028925,-115.1809534 -36.07028159,-115.1809534 -36.07027438,-115.1809534 -36.07026672,-115.1809534 -36.07025906,-115.1809534 -36.07025185,-115.1809534 -36.07024419,-115.1809534 -36.07023653,-115.1809534 -36.07022933,-115.1809534 -36.07022167,-115.1809533 -36.07021401,-115.1809533 -36.0702068,-115.1809533 -36.07019914,-115.1809533 -36.07019148,-115.1809533 -36.07018427,-115.1809533 -36.07017661,-115.1809533 -36.07016895,-115.1809533 -36.07016174,-115.1809533 -36.07015408,-115.1809533 -36.07014642,-115.1809533 -36.07013921,-115.1809533 -36.07013155,-115.1809533 -36.07012389,-115.1809533 -36.07011668,-115.1809533 -36.07010902,-115.1809533 -36.07010136,-115.1809532 -36.07009415,-115.1809532 -36.0700865,-115.1809532 -36.07007884,-115.1809532 -36.07007163,-115.1809532 -36.07006397,-115.1809532 -36.07005631,-115.1809532 -36.0700491,-115.1809532 -36.07004144,-115.1809532 -36.07003378,-115.1809532 -36.07002657,-115.1809532 -36.07001891,-115.1809532 -36.07001125,-115.1809532 -36.07000404,-115.1809532 -36.06999638,-115.1809532 -36.06998872,-115.1809532 -36.06998151,-115.1809531 -36.06997385,-115.1809531 -36.06996619,-115.1809531 -36.06995898,-115.1809531 -36.06995132,-115.1809531 -36.06994366,-115.1809531 -36.06993646,-115.1809531 -36.0699288,-115.1809531 -36.06992114,-115.1809531 -36.06991393,-115.1809531 -36.06990627,-115.1809531 -36.06989861,-115.1809531 -36.0698914,-115.1809531 -36.06988374,-115.1809531 -36.06987608,-115.1809531 -36.06986887,-115.1809531 -36.06986121,-115.180953 -36.06985355,-115.180953 -36.06984634,-115.180953 -36.06983868,-115.180953 -36.06983102,-115.180953 -36.06982381,-115.180953 -36.06981615,-115.180953 -36.06980849,-115.180953 -36.06980144,-115.1809548 -36.06979396,-115.1809568 -36.06978647,-115.1809588 -36.06977943,-115.1809607 -36.06977195,-115.1809627 -36.06976447,-115.1809647 -36.06975742,-115.1809666 -36.06974994,-115.1809686 -36.06974246,-115.1809706 -36.06973541,-115.1809725 -36.06972793,-115.1809746 -36.06972045,-115.1809766 -36.0697134,-115.1809785 -36.06970592,-115.1809805 -36.06969844,-115.1809825 -36.0696914,-115.1809844 -36.06968391,-115.1809864 -36.06967643,-115.1809884 -36.06966939,-115.1809903 -36.0696619,-115.1809923 -36.06965442,-115.1809943 -36.06964738,-115.1809962 -36.0696399,-115.1809983 -36.06963241,-115.1810003 -36.06962537,-115.1810022 -36.06961789,-115.1810042 -36.0696104,-115.1810062 -36.06960336,-115.1810081 -36.06959588,-115.1810101 -36.06958839,-115.1810121 -36.06958135,-115.181014 -36.06957387,-115.181016 -36.06956639,-115.181018 -36.06955934,-115.1810199 -36.06955186,-115.181022 -36.06954438,-115.181024 -36.06953733,-115.1810259 -36.06952985,-115.1810279 -36.06952237,-115.1810299 -36.06951533,-115.1810318 -36.06950784,-115.1810338 -36.06950036,-115.1810358 -36.06949332,-115.1810377 -36.06948583,-115.1810397 -36.06947835,-115.1810418 -36.06947131,-115.1810436 -36.06946382,-115.1810457 -36.06945634,-115.1810477 -36.0694493,-115.1810496 -36.06944182,-115.1810516 -36.06943433,-115.1810536 -36.06942729,-115.1810555 -36.06941981,-115.1810575 -36.06941232,-115.1810595 -36.06940528,-115.1810614 -36.0693978,-115.1810634 -36.06939032,-115.1810655 -36.06938327,-115.1810673 -36.06937579,-115.1810694 -36.06936831,-115.1810714 -36.06936126,-115.1810733 -36.06935378,-115.1810753 -36.0693463,-115.1810773 -36.06933925,-115.1810792 -36.06933177,-115.1810812 -36.06932429,-115.1810832 -36.06931725,-115.1810851 -36.06930976,-115.1810871 -36.06930228,-115.1810892 -36.06929524,-115.1810911 -36.06928775,-115.1810931 -36.06928027,-115.1810951 -36.06927323,-115.181097 -36.06926575,-115.181099 -36.06925826,-115.181101 -36.06925122,-115.1811029 -36.06924374,-115.1811049 -36.06923625,-115.1811069 -36.06922921,-115.1811088 -36.06922173,-115.1811108 -36.06921424,-115.1811129 -36.0692072,-115.1811148 -36.06919972,-115.1811168 -36.06919224,-115.1811188 -36.06918519,-115.1811207 -36.06917771,-115.1811227 -36.06917023,-115.1811247 -36.06916318,-115.1811266 -36.0691557,-115.1811286 -36.06914822,-115.1811306 -36.06914118,-115.1811325 -36.06913369,-115.1811345 -36.06912621,-115.1811366 -36.06911917,-115.1811385 -36.06911168,-115.1811405 -36.0691042,-115.1811425 -36.06909716,-115.1811444 -36.06908967,-115.1811464 -36.06908219,-115.1811484 -36.06907515,-115.1811503 -36.06906767,-115.1811523 -36.06906018,-115.1811543 -36.06905314,-115.1811562 -36.06904566,-115.1811582 -36.06903817,-115.1811603 -36.06903113,-115.1811622 -36.06902365,-115.1811642 -36.06901617,-115.1811662 -36.06900912,-115.1811681 -36.06900164,-115.1811701 -36.06899416,-115.1811721 -36.06898711,-115.181174 -36.06897963,-115.181176 -36.06897215,-115.181178 -36.0689651,-115.1811799 -36.06895762,-115.1811819 -36.06895014,-115.181184 -36.0689431,-115.1811859 -36.06893561,-115.1811879 -36.06892813,-115.1811899 -36.06892109,-115.1811918 -36.0689136,-115.1811938 -36.06890612,-115.1811958 -36.06889908,-115.1811977 -36.06889182,-115.1812007 -36.06888461,-115.1812039 -36.06887782,-115.1812069 -36.06887061,-115.18121 -36.06886339,-115.1812132 -36.0688566,-115.1812162 -36.06884939,-115.1812194 -36.06884217,-115.1812225 -36.06883538,-115.1812255 -36.06882817,-115.1812287 -36.06882095,-115.1812318 -36.06881416,-115.1812348 -36.06880695,-115.181238 -36.06879973,-115.1812412 -36.06879294,-115.1812441 -36.06878573,-115.1812473 -36.06877851,-115.1812505 -36.06877172,-115.1812535 -36.06876451,-115.1812566 -36.06875729,-115.1812598 -36.0687505,-115.1812628 -36.06874329,-115.181266 -36.06873607,-115.1812691 -36.06872928,-115.1812721 -36.06872207,-115.1812753 -36.06871485,-115.1812784 -36.06870806,-115.1812814 -36.06870085,-115.1812846 -36.06869363,-115.1812878 -36.06868684,-115.1812907 -36.06867963,-115.1812939 -36.06867241,-115.1812971 -36.06866562,-115.1813001 -36.06865841,-115.1813032 -36.06865119,-115.1813064 -36.0686444,-115.1813094 -36.06863719,-115.1813126 -36.06862997,-115.1813157 -36.06862318,-115.1813187 -36.06861597,-115.1813219 -36.06860875,-115.181325 -36.06860196,-115.181328 -36.06859475,-115.1813312 -36.06858753,-115.1813344 -36.06858074,-115.1813373 -36.06857353,-115.1813405 -36.06856631,-115.1813437 -36.06855952,-115.1813467 -36.06855231,-115.1813498 -36.06854509,-115.181353 -36.0685383,-115.181356 -36.06853109,-115.1813592 -36.06852388,-115.1813623 -36.06851709,-115.1813653 -36.06850987,-115.1813685 -36.06850266,-115.1813716 -36.06849587,-115.1813746 -36.06848865,-115.1813778 -36.06848144,-115.181381 -36.06847465,-115.1813839 -36.06846743,-115.1813871 -36.06846022,-115.1813903 -36.06845343,-115.1813933 -36.06844621,-115.1813964 -36.068439,-115.1813996 -36.06843221,-115.1814026 -36.06842499,-115.1814058 -36.06841778,-115.1814089 -36.06841099,-115.1814119 -36.06840377,-115.1814151 -36.06839656,-115.1814182 -36.06838977,-115.1814212 -36.06838255,-115.1814244 -36.06837534,-115.1814276 -36.06836855,-115.1814305 -36.06836133,-115.1814337 -36.06835412,-115.1814369 -36.06834733,-115.1814399 -36.06834011,-115.181443 -36.0683329,-115.1814462 -36.06832611,-115.1814492 -36.06831889,-115.1814524 -36.06831168,-115.1814555 -36.06830489,-115.1814585 -36.06829767,-115.1814617 -36.06829046,-115.1814648 -36.06828367,-115.1814678 -36.06827645,-115.181471 -36.06826924,-115.1814742 -36.06826245,-115.1814771 -36.06825523,-115.1814803 -36.06824802,-115.1814835 -36.06824123,-115.1814865 -36.06823401,-115.1814896 -36.0682268,-115.1814928 -36.06822001,-115.1814958 -36.06821279,-115.181499 -36.06820558,-115.1815021 -36.06819879,-115.1815051 -36.06819158,-115.1815083 -36.06818436,-115.1815114 -36.06817757,-115.1815144 -36.06817036,-115.1815176 -36.06816314,-115.1815208 -36.06815635,-115.1815237 -36.06814914,-115.1815269 -36.06814192,-115.1815301 -36.06813513,-115.1815331 -36.06812792,-115.1815362 -36.0681207,-115.1815394 -36.06811391,-115.1815424 -36.0681067,-115.1815456 -36.06809948,-115.1815487 -36.06809269,-115.1815517 -36.06808548,-115.1815549 -36.06807826,-115.181558 -36.06807147,-115.181561 -36.06806426,-115.1815642 -36.06805704,-115.1815674 -36.06805025,-115.1815704 -36.06804304,-115.1815735 -36.06803582,-115.1815767 -36.06802903,-115.1815797 -36.06802182,-115.1815828 -36.0680146,-115.181586 -36.06800781,-115.181589 -36.0680006,-115.1815922 -36.06799338,-115.1815953 -36.06798659,-115.1815983 -36.06797938,-115.1816015 -36.06797216,-115.1816046 -36.06796537,-115.1816076 -36.06795816,-115.1816108 -36.06795094,-115.181614 -36.06794415,-115.181617 -36.06793694,-115.1816201 -36.06792972,-115.1816233 -36.06792293,-115.1816263 -36.06791582,-115.1816298 -36.06790883,-115.1816336 -36.06790225,-115.1816372 -36.06789526,-115.1816411 -36.06788828,-115.181645 -36.0678817,-115.1816486 -36.06787471,-115.1816525 -36.06786772,-115.1816563 -36.06786114,-115.1816599 -36.06785415,-115.1816638 -36.06784716,-115.1816677 -36.06784058,-115.1816713 -36.06783359,-115.1816752 -36.0678266,-115.181679 -36.06782002,-115.1816826 -36.06781303,-115.1816865 -36.06780605,-115.1816904 -36.06779947,-115.181694 -36.06779248,-115.1816979 -36.06778549,-115.1817017 -36.06777891,-115.1817054 -36.06777192,-115.1817092 -36.06776493,-115.1817131 -36.06775835,-115.1817167 -36.06775136,-115.1817206 -36.06774437,-115.1817244 -36.06773779,-115.1817281 -36.06773081,-115.1817319 -36.06772382,-115.1817358 -36.06771724,-115.1817394 -36.06771025,-115.1817433 -36.06770326,-115.1817471 -36.06769668,-115.1817508 -36.06768969,-115.1817546 -36.0676827,-115.1817585 -36.06767612,-115.1817621 -36.06766913,-115.181766 -36.06766214,-115.1817698 -36.06765557,-115.1817735 -36.06764858,-115.1817773 -36.06764159,-115.1817812 -36.06763501,-115.1817848 -36.06762802,-115.1817887 -36.06762103,-115.1817925 -36.06761445,-115.1817962 -36.06760746,-115.1818 -36.06760047,-115.1818039 -36.06759389,-115.1818075 -36.0675869,-115.1818114 -36.06757991,-115.1818152 -36.06757334,-115.1818189 -36.06756635,-115.1818227 -36.06755936,-115.1818266 -36.06755278,-115.1818302 -36.06754579,-115.1818341 -36.0675388,-115.1818379 -36.06753222,-115.1818416 -36.06752523,-115.1818454 -36.06751824,-115.1818493 -36.06751166,-115.1818529 -36.06750467,-115.1818568 -36.06749768,-115.1818606 -36.06749111,-115.1818643 -36.06748412,-115.1818681 -36.06747713,-115.181872 -36.06747055,-115.1818756 -36.06746356,-115.1818795 -36.06745657,-115.1818833 -36.06744999,-115.181887 -36.067443,-115.1818908 -36.06743601,-115.1818947 -36.06742943,-115.1818983 -36.06742244,-115.1819022 -36.06741545,-115.181906 -36.06740888,-115.1819097 -36.06740189,-115.1819135 -36.0673949,-115.1819174 -36.06738832,-115.181921 -36.06738133,-115.1819249 -36.06737434,-115.1819287 -36.06736776,-115.1819324 -36.06736077,-115.1819362 -36.06735378,-115.1819401 -36.0673472,-115.1819437 -36.06734021,-115.1819476 -36.06733323,-115.1819514 -36.06732665,-115.1819551 -36.06731966,-115.1819589 -36.06731267,-115.1819628 -36.06730609,-115.1819664 -36.0672991,-115.1819703 -36.06729211,-115.1819741 -36.06728553,-115.1819778 -36.06727854,-115.1819816 -36.06727155,-115.1819855 -36.06726503,-115.1819893 -36.06725824,-115.1819936 -36.06725145,-115.181998 -36.06724506,-115.1820021 -36.06723827,-115.1820065 -36.06723148,-115.1820108 -36.06722509,-115.1820149 -36.0672183,-115.1820193 -36.06721151,-115.1820237 -36.06720512,-115.1820278 -36.06719833,-115.1820322 -36.06719154,-115.1820365 -36.06718515,-115.1820406 -36.06717836,-115.182045 -36.06717157,-115.1820494 -36.06716518,-115.1820535 -36.06715839,-115.1820578 -36.0671516,-115.1820622 -36.06714521,-115.1820663 -36.06713842,-115.1820707 -36.06713163,-115.1820751 -36.06712524,-115.1820792 -36.06711845,-115.1820835 -36.06711166,-115.1820879 -36.06710527,-115.182092 -36.06709848,-115.1820964 -36.06709169,-115.1821007 -36.0670853,-115.1821048 -36.06707851,-115.1821092 -36.06707172,-115.1821136 -36.06706533,-115.1821177 -36.06705854,-115.1821221 -36.06705175,-115.1821264 -36.06704536,-115.1821305 -36.06703857,-115.1821349 -36.06703178,-115.1821393 -36.06702539,-115.1821434 -36.0670186,-115.1821477 -36.06701181,-115.1821521 -36.06700542,-115.1821562 -36.06699863,-115.1821606 -36.06699184,-115.1821649 -36.06698545,-115.1821691 -36.06697866,-115.1821734 -36.06697187,-115.1821778 -36.06696548,-115.1821819 -36.06695869,-115.1821863 -36.0669519,-115.1821906 -36.06694551,-115.1821947 -36.06693872,-115.1821991 -36.06693193,-115.1822035 -36.06692553,-115.1822076 -36.06691874,-115.182212 -36.06691195,-115.1822163 -36.06690556,-115.1822204 -36.06689877,-115.1822248 -36.06689198,-115.1822292 -36.06688559,-115.1822333 -36.0668788,-115.1822376 -36.06687201,-115.182242 -36.06686562,-115.1822461 -36.06685883,-115.1822505 -36.06685204,-115.1822548 -36.06684565,-115.182259 -36.06683886,-115.1822633 -36.06683207,-115.1822677 -36.06682568,-115.1822718 -36.06681889,-115.1822762 -36.0668121,-115.1822805 -36.06680571,-115.1822846 -36.06679892,-115.182289 -36.06679213,-115.1822934 -36.06678574,-115.1822975 -36.06677895,-115.1823018 -36.06677216,-115.1823062 -36.06676577,-115.1823103 -36.06675898,-115.1823147 -36.06675219,-115.1823191 -36.0667458,-115.1823232 -36.06673901,-115.1823275 -36.06673222,-115.1823319 -36.06672583,-115.182336 -36.06671904,-115.1823404 -36.06671225,-115.1823447 -36.06670586,-115.1823488 -36.06669907,-115.1823532 -36.06669228,-115.1823576 -36.06668589,-115.1823617 -36.0666791,-115.1823661 -36.06667231,-115.1823704 -36.06666592,-115.1823745 -36.06665913,-115.1823789 -36.06665234,-115.1823833 -36.06664595,-115.1823874 -36.06663916,-115.1823917 -36.06663237,-115.1823961 -36.06662598,-115.1824002 -36.06661919,-115.1824046 -36.0666124,-115.182409 -36.06660601,-115.1824131 -36.06659922,-115.1824174 -36.06659243,-115.1824218 -36.06658604,-115.1824259 -36.06657925,-115.1824303 -36.0665724,-115.1824345 -36.06656587,-115.1824383 -36.06655893,-115.1824423 -36.066552,-115.1824463 -36.06654547,-115.18245 -36.06653853,-115.182454 -36.06653159,-115.182458 -36.06652506,-115.1824618 -36.06651812,-115.1824658 -36.06651118,-115.1824698 -36.06650465,-115.1824735 -36.06649771,-115.1824775 -36.06649078,-115.1824815 -36.06648425,-115.1824853 -36.06647731,-115.1824893 -36.06647037,-115.1824933 -36.06646384,-115.182497 -36.0664569,-115.182501 -36.06644996,-115.182505 -36.06644343,-115.1825088 -36.06643649,-115.1825128 -36.06642956,-115.1825168 -36.06642303,-115.1825206 -36.06641609,-115.1825245 -36.06640915,-115.1825285 -36.06640262,-115.1825323 -36.06639568,-115.1825363 -36.06638874,-115.1825403 -36.06638221,-115.1825441 -36.06637527,-115.1825481 -36.06636834,-115.1825521 -36.06636181,-115.1825558 -36.06635487,-115.1825598 -36.06634793,-115.1825638 -36.0663414,-115.1825676 -36.06633446,-115.1825716 -36.06632752,-115.1825756 -36.06632099,-115.1825793 -36.06631405,-115.1825833 -36.06630712,-115.1825873 -36.06630059,-115.1825911 -36.06629365,-115.1825951 -36.06628671,-115.1825991 -36.06628018,-115.1826028 -36.06627324,-115.1826068 -36.0662663,-115.1826108 -36.06625977,-115.1826146 -36.06625283,-115.1826186 -36.0662459,-115.1826226 -36.06623937,-115.1826264 -36.06623243,-115.1826304 -36.06622549,-115.1826343 -36.06621896,-115.1826381 -36.06621202,-115.1826421 -36.06620507,-115.1826461 -36.06619851,-115.1826498 -36.06619154,-115.1826537 -36.06618457,-115.1826576 -36.06617801,-115.1826613 -36.06617104,-115.1826652 -36.06616407,-115.1826691 -36.0661575,-115.1826727 -36.06615053,-115.1826767 -36.06614356,-115.1826806 -36.066137,-115.1826842 -36.06613003,-115.1826882 -36.06612306,-115.1826921 -36.0661165,-115.1826957 -36.06610952,-115.1826996 -36.06610255,-115.1827036 -36.06609599,-115.1827072 -36.06608902,-115.1827111 -36.06608205,-115.182715 -36.06607549,-115.1827187 -36.06606851,-115.1827226 -36.06606154,-115.1827265 -36.06605498,-115.1827302 -36.06604801,-115.1827341 -36.06604104,-115.182738 -36.06603448,-115.1827417 -36.06602751,-115.1827456 -36.06602053,-115.1827495 -36.06601397,-115.1827532 -36.066007,-115.1827571 -36.06600003,-115.182761 -36.06599347,-115.1827647 -36.0659865,-115.1827686 -36.06597953,-115.1827725 -36.06597296,-115.1827762 -36.06596599,-115.1827801 -36.06595902,-115.182784 -36.06595246,-115.1827877 -36.06594549,-115.1827916 -36.06593852,-115.1827955 -36.06593196,-115.1827992 -36.06592498,-115.1828031 -36.06591801,-115.182807 -36.06591145,-115.1828107 -36.06590448,-115.1828146 -36.06589751,-115.1828185 -36.06589095,-115.1828222 -36.06588398,-115.1828261 -36.065877,-115.18283 -36.06587044,-115.1828337 -36.06586347,-115.1828376 -36.0658565,-115.1828415 -36.06584994,-115.1828452 -36.06584297,-115.1828491 -36.065836,-115.182853 -36.06582943,-115.1828567 -36.06582246,-115.1828606 -36.06581549,-115.1828645 -36.06580893,-115.1828682 -36.06580196,-115.1828721 -36.06579499,-115.182876 -36.06578843,-115.1828797 -36.06578145,-115.1828836 -36.06577448,-115.1828875 -36.06576792,-115.1828912 -36.06576095,-115.1828951 -36.06575398,-115.182899 -36.06574742,-115.1829026 -36.06574045,-115.1829066 -36.06573349,-115.1829105 -36.06572693,-115.1829142 -36.06571997,-115.1829181 -36.06571301,-115.1829221 -36.06570645,-115.1829258 -36.06569949,-115.1829297 -36.06569253,-115.1829336 -36.06568597,-115.1829373 -36.06567901,-115.1829412 -36.06567205,-115.1829452 -36.06566549,-115.1829489 -36.06565853,-115.1829528 -36.06565157,-115.1829567 -36.06564501,-115.1829604 -36.06563805,-115.1829644 -36.06563109,-115.1829683 -36.06562453,-115.182972 -36.06561757,-115.1829759 -36.06561061,-115.1829799 -36.06560405,-115.1829836 -36.06559709,-115.1829875 -36.06559013,-115.1829914 -36.06558357,-115.1829951 -36.06557661,-115.182999 -36.06556965,-115.183003 -36.06556309,-115.1830067 -36.06555613,-115.1830106 -36.06554917,-115.1830145 -36.06554261,-115.1830182 -36.06553565,-115.1830222 -36.06552869,-115.1830261 -36.06552213,-115.1830298 -36.06551517,-115.1830337 -36.06550821,-115.1830377 -36.06550165,-115.1830414 -36.06549469,-115.1830453 -36.06548773,-115.1830492 -36.06548117,-115.1830529 -36.06547421,-115.1830569 -36.06546725,-115.1830608 -36.06546069,-115.1830645 -36.06545373,-115.1830684 -36.06544677,-115.1830723 -36.06544021,-115.183076 -36.06543325,-115.18308 -36.06542629,-115.1830839 -36.06541973,-115.1830876 -36.06541277,-115.1830915 -36.06540581,-115.1830955 -36.06539925,-115.1830992 -36.06539229,-115.1831031 -36.06538533,-115.183107 -36.06537877,-115.1831107 -36.06537181,-115.1831147 -36.06536485,-115.1831186 -36.06535829,-115.1831223 -36.06535133,-115.1831262 -36.06534437,-115.1831301 -36.06533781,-115.1831338 -36.06533085,-115.1831378 -36.06532389,-115.1831417 -36.06531733,-115.1831454 -36.06531037,-115.1831493 -36.06530341,-115.1831533 -36.06529685,-115.183157 -36.06528989,-115.1831609 -36.06528293,-115.1831648 -36.06527637,-115.1831685 -36.06526941,-115.1831725 -36.06526245,-115.1831764 -36.06525589,-115.1831801 -36.06524893,-115.183184 -36.06524197,-115.1831879 -36.06523541,-115.1831916 -36.06522845,-115.1831956 -36.06522149,-115.1831995 -36.06521493,-115.1832032 -36.06520797,-115.1832071 -36.06520101,-115.1832111 -36.06519445,-115.1832148 -36.06518749,-115.1832187 -36.06518053,-115.1832226 -36.06517397,-115.1832263 -36.0651669,-115.1832299 -36.06515975,-115.1832333 -36.06515302,-115.1832365 -36.06514587,-115.1832399 -36.06513872,-115.1832433 -36.06513199,-115.1832464 -36.06512483,-115.1832498 -36.06511768,-115.1832532 -36.06511095,-115.1832564 -36.0651038,-115.1832598 -36.06509665,-115.1832631 -36.06508992,-115.1832663 -36.06508277,-115.1832697 -36.06507562,-115.1832731 -36.06506889,-115.1832763 -36.06506173,-115.1832796 -36.06505458,-115.183283 -36.06504785,-115.1832862 -36.0650407,-115.1832896 -36.06503355,-115.183293 -36.06502682,-115.1832961 -36.06501967,-115.1832995 -36.06501252,-115.1833029 -36.06500579,-115.1833061 -36.06499864,-115.1833095 -36.06499148,-115.1833128 -36.06498475,-115.183316 -36.0649776,-115.1833194 -36.06497045,-115.1833228 -36.06496372,-115.183326 -36.06495657,-115.1833293 -36.06494942,-115.1833327 -36.06494269,-115.1833359 -36.06493554,-115.1833393 -36.06492839,-115.1833427 -36.06492165,-115.1833458 -36.0649145,-115.1833492 -36.06490735,-115.1833526 -36.06490062,-115.1833558 -36.06489347,-115.1833592 -36.06488632,-115.1833625 -36.06487959,-115.1833657 -36.06487221,-115.1833683 -36.06486482,-115.1833707 -36.06485786,-115.183373 -36.06485046,-115.1833755 -36.06484307,-115.183378 -36.06483611,-115.1833803 -36.06482872,-115.1833827 -36.06482132,-115.1833852 -36.06481436,-115.1833875 -36.06480697,-115.18339 -36.06479957,-115.1833924 -36.06479261,-115.1833947 -36.06478522,-115.1833972 -36.06477782,-115.1833997 -36.06477086,-115.183402 -36.06476347,-115.1834044 -36.06475607,-115.1834069 -36.06474911,-115.1834092 -36.06474172,-115.1834117 -36.06473432,-115.1834141 -36.06472736,-115.1834164 -36.06471997,-115.1834189 -36.06471258,-115.1834214 -36.06470562,-115.1834237 -36.06469822,-115.1834261 -36.06469083,-115.1834286 -36.06468387,-115.1834309 -36.06467647,-115.1834334 -36.06466908,-115.1834358 -36.06466212,-115.1834381 -36.06465472,-115.1834406 -36.06464733,-115.1834431 -36.06464037,-115.1834454 -36.06463297,-115.1834478 -36.06462558,-115.1834503 -36.06461862,-115.1834526 -36.06461122,-115.1834551 -36.06460383,-115.1834575 -36.06459687,-115.1834598 -36.06458947,-115.1834623 -36.06458208,-115.1834648 -36.06457512,-115.1834671 -36.06456773,-115.1834695 -36.06456033,-115.183472 -36.06455337,-115.1834743 -36.06454598,-115.1834768 -36.06453858,-115.1834792 -36.06453162,-115.1834815 -36.06452423,-115.183484 -36.06451683,-115.1834865 -36.06450987,-115.1834888 -36.06450248,-115.1834912 -36.06449508,-115.1834937 -36.06448812,-115.183496 -36.06448073,-115.1834985 -36.06447333,-115.1835009 -36.06446637,-115.1835032 -36.06445898,-115.1835057 -36.06445159,-115.1835082 -36.06444463,-115.1835105 -36.06443723,-115.1835129 -36.06442984,-115.1835154 -36.06442288,-115.1835177 -36.06441548,-115.1835202 -36.06440791,-115.1835211 -36.0644007,-115.1835211 -36.06439304,-115.1835212 -36.06438538,-115.1835213 -36.06437818,-115.1835214 -36.06437052,-115.1835215 -36.06436286,-115.1835216 -36.06435565,-115.1835217 -36.06434799,-115.1835218 -36.06434033,-115.1835219 -36.06433312,-115.183522 -36.06432546,-115.1835221 -36.0643178,-115.1835222 -36.06431059,-115.1835222 -36.06430293,-115.1835223 -36.06429528,-115.1835224 -36.06428807,-115.1835225 -36.06428041,-115.1835226 -36.06427275,-115.1835227 -36.06426554,-115.1835228 -36.06425788,-115.1835229 -36.06425067,-115.183523 -36.06424301,-115.1835231 -36.06423535,-115.1835232 -36.06422814,-115.1835232 -36.06422049,-115.1835233 -36.06421283,-115.1835234 -36.06420562,-115.1835235 -36.06419796,-115.1835236 -36.0641903,-115.1835237 -36.06418309,-115.1835238 -36.06417543,-115.1835239 -36.06416777,-115.183524 -36.06416056,-115.1835241 -36.0641529,-115.1835242 -36.06414524,-115.1835243 -36.06413804,-115.1835243 -36.06413038,-115.1835244 -36.06412272,-115.1835245 -36.06411551,-115.1835246 -36.06410785,-115.1835247 -36.06410019,-115.1835248 -36.06409298,-115.1835249 -36.06408532,-115.183525 -36.06407766,-115.1835251 -36.06407045,-115.1835252 -36.0640628,-115.1835253 -36.06405514,-115.1835254 -36.06404793,-115.1835254 -36.06404027,-115.1835255 -36.06403261,-115.1835256 -36.0640254,-115.1835257 -36.06401774,-115.1835258 -36.06401008,-115.1835259 -36.06400287,-115.183526 -36.06399522,-115.1835257 -36.06398757,-115.1835253 -36.06398036,-115.1835249 -36.06397271,-115.1835246 -36.06396506,-115.1835242 -36.06395785,-115.1835238 -36.0639502,-115.1835235 -36.06394254,-115.1835231 -36.06393534,-115.1835227 -36.06392769,-115.1835223 -36.06392003,-115.183522 -36.06391283,-115.1835216 -36.06390518,-115.1835212 -36.06389752,-115.1835209 -36.06389032,-115.1835205 -36.06388267,-115.1835201 -36.06387501,-115.1835198 -36.06386781,-115.1835194 -36.06386016,-115.183519 -36.0638525,-115.1835186 -36.0638453,-115.1835183 -36.06383765,-115.1835179 -36.06382999,-115.1835175 -36.06382279,-115.1835172 -36.06381514,-115.1835168 -36.06380748,-115.1835164 -36.06380028,-115.1835161 -36.06379263,-115.1835157 -36.06378497,-115.1835153 -36.06377777,-115.183515 -36.06377012,-115.1835146 -36.06376246,-115.1835142 -36.06375526,-115.1835139 -36.06374761,-115.1835135 -36.06373995,-115.1835131 -36.06373275,-115.1835127 -36.0637251,-115.1835124 -36.06371744,-115.183512 -36.06371024,-115.1835116 -36.06370258,-115.1835113 -36.06369493,-115.1835109 -36.06368773,-115.1835105 -36.06368007,-115.1835102 -36.06367242,-115.1835098 -36.06366522,-115.1835094 -36.06365756,-115.183509 -36.06364991,-115.1835087 -36.06364271,-115.1835083 -36.06363505,-115.1835079 -36.0636274,-115.1835076 -36.0636202,-115.1835072 -36.06361254,-115.1835068 -36.06360489,-115.1835065 -36.06359769,-115.1835061 -36.06359003,-115.1835057 -36.06358238,-115.1835053 -36.06357518,-115.183505 -36.06356752,-115.1835046 -36.06355987,-115.1835042 -36.06355271,-115.1835035 -36.06354518,-115.1835017 -36.06353765,-115.1835 -36.06353057,-115.1834983 -36.06352304,-115.1834966 -36.06351551,-115.1834948 -36.06350843,-115.1834932 -36.0635009,-115.1834914 -36.06349337,-115.1834897 -36.06348629,-115.1834881 -36.06347876,-115.1834863 -36.06347123,-115.1834846 -36.06346415,-115.1834829 -36.06345662,-115.1834812 -36.0634491,-115.1834794 -36.06344201,-115.1834778 -36.06343448,-115.183476 -36.06342696,-115.1834743 -36.06341987,-115.1834726 -36.06341235,-115.1834709 -36.06340482,-115.1834691 -36.06339773,-115.1834675 -36.06339021,-115.1834658 -36.06338268,-115.183464 -36.0633756,-115.1834624 -36.06336807,-115.1834606 -36.06336054,-115.1834589 -36.06335346,-115.1834572 -36.06334593,-115.1834555 -36.0633384,-115.1834537 -36.06333132,-115.1834521 -36.06332379,-115.1834503 -36.06331626,-115.1834486 -36.06330918,-115.1834469 -36.06330165,-115.1834452 -36.06329413,-115.1834435 -36.06328704,-115.1834418 -36.06327951,-115.1834401 -36.06327199,-115.1834383 -36.0632649,-115.1834367 -36.06325745,-115.1834345 -36.06325003,-115.1834322 -36.06324306,-115.1834299 -36.06323564,-115.1834276 -36.06322823,-115.1834252 -36.06322125,-115.1834229 -36.06321384,-115.1834206 -36.06320643,-115.1834182 -36.06319945,-115.183416 -36.06319204,-115.1834136 -36.06318463,-115.1834112 -36.06317765,-115.183409 -36.06317024,-115.1834066 -36.06316282,-115.1834042 -36.06315585,-115.183402 -36.06314844,-115.1833996 -36.06314102,-115.1833972 -36.06313405,-115.183395 -36.06312663,-115.1833926 -36.06311922,-115.1833902 -36.06311224,-115.183388 -36.06310483,-115.1833856 -36.06309742,-115.1833832 -36.06309044,-115.183381 -36.06308303,-115.1833786 -36.06307562,-115.1833763 -36.06306864,-115.183374 -36.06306123,-115.1833716 -36.06305381,-115.1833693 -36.06304684,-115.183367 -36.06303943,-115.1833647 -36.06303201,-115.1833623 -36.06302504,-115.18336 -36.06301762,-115.1833577 -36.06301021,-115.1833553 -36.06300323,-115.1833531 -36.06299582,-115.1833507 -36.06298841,-115.1833483 -36.06298143,-115.1833461 -36.06297402,-115.1833437 -36.06296661,-115.1833413 -36.06295963,-115.1833391 -36.06295222,-115.1833367 -36.0629448,-115.1833343 -36.06293783,-115.1833321 -36.06293042,-115.1833297 -36.062923,-115.1833273 -36.06291603,-115.1833251 -36.06290861,-115.1833227 -36.0629012,-115.1833203 -36.06289422,-115.1833181 -36.06288681,-115.1833157 -36.0628794,-115.1833134 -36.06287242,-115.1833111 -36.06286501,-115.1833087 -36.0628576,-115.1833064 -36.06285062,-115.1833041 -36.06284321,-115.1833018 -36.06283579,-115.1832994 -36.06282882,-115.1832971 -36.06282141,-115.1832948 -36.06281432,-115.1832913 -36.06280781,-115.1832875 -36.06280089,-115.1832834 -36.06279396,-115.1832794 -36.06278745,-115.1832756 -36.06278053,-115.1832716 -36.0627736,-115.1832675 -36.06276709,-115.1832637 -36.06276017,-115.1832597 -36.06275324,-115.1832556 -36.06274673,-115.1832518 -36.06273981,-115.1832478 -36.06273288,-115.1832438 -36.06272637,-115.18324 -36.06271945,-115.1832359 -36.06271252,-115.1832319 -36.06270601,-115.1832281 -36.06269909,-115.183224 -36.06269216,-115.18322 -36.06268565,-115.1832162 -36.06267873,-115.1832122 -36.0626718,-115.1832081 -36.06266529,-115.1832043 -36.06265837,-115.1832003 -36.06265144,-115.1831963 -36.06264523,-115.1831917 -36.06263866,-115.1831869 -36.06263209,-115.1831821 -36.0626259,-115.1831775 -36.06261933,-115.1831727 -36.06261276,-115.1831678 -36.06260657,-115.1831632 -36.0626,-115.1831584 -36.06259343,-115.1831536 -36.06258724,-115.183149 -36.06258067,-115.1831442 -36.0625741,-115.1831393 -36.06256791,-115.1831347 -36.06256134,-115.1831299 -36.06255477,-115.1831251 -36.06254858,-115.1831205 -36.06254201,-115.1831157 -36.06253544,-115.1831108 -36.06252925,-115.1831062 -36.06252268,-115.1831014 -36.06251611,-115.1830966 -36.06250992,-115.183092 -36.06250335,-115.1830872 -36.06249678,-115.1830823 -36.06249059,-115.1830777 -36.06248402,-115.1830729 -36.06247745,-115.1830681 -36.06247126,-115.1830635 -36.06246469,-115.1830587 -36.06245812,-115.1830538 -36.06245193,-115.1830492 -36.06244536,-115.1830444 -36.06243879,-115.1830396 -36.0624326,-115.183035 -36.06242603,-115.1830302 -36.06241946,-115.1830253 -36.06241327,-115.1830207 -36.0624067,-115.1830159 -36.06240013,-115.1830111 -36.06239394,-115.1830065 -36.06238737,-115.1830017 -36.0623808,-115.1829968 -36.06237461,-115.1829922 -36.06236804,-115.1829874 -36.06236147,-115.1829826 -36.06235549,-115.1829776 -36.06234943,-115.1829718 -36.06234337,-115.1829661 -36.06233767,-115.1829606 -36.06233161,-115.1829549 -36.06232555,-115.1829491 -36.06231985,-115.1829437 -36.06231378,-115.1829379 -36.06230772,-115.1829321 -36.06230202,-115.1829267 -36.06229596,-115.1829209 -36.0622899,-115.1829152 -36.0622842,-115.1829097 -36.06227814,-115.182904 -36.06227208,-115.1828982 -36.06226637,-115.1828928 -36.06226031,-115.182887 -36.06225425,-115.1828812 -36.06224855,-115.1828758 -36.06224249,-115.18287 -36.06223643,-115.1828643 -36.06223072,-115.1828588 -36.06222466,-115.1828531 -36.0622186,-115.1828473 -36.0622129,-115.1828419 -36.06220684,-115.1828361 -36.06220078,-115.1828303 -36.06219507,-115.1828249 -36.06218901,-115.1828191 -36.06218295,-115.1828134 -36.06217725,-115.1828079 -36.06217119,-115.1828022 -36.06216513,-115.1827964 -36.06215943,-115.182791 -36.06215337,-115.1827852 -36.06214731,-115.1827794 -36.0621416,-115.182774 -36.06213554,-115.1827682 -36.06212948,-115.1827624 -36.06212378,-115.182757 -36.06211772,-115.1827513 -36.06211166,-115.1827455 -36.06210616,-115.1827398 -36.06210069,-115.1827332 -36.06209523,-115.1827265 -36.06209009,-115.1827203 -36.06208463,-115.1827137 -36.06207917,-115.1827071 -36.06207403,-115.1827009 -36.06206857,-115.1826942 -36.0620631,-115.1826876 -36.06205796,-115.1826814 -36.0620525,-115.1826748 -36.06204704,-115.1826682 -36.0620419,-115.182662 -36.06203644,-115.1826553 -36.06203098,-115.1826487 -36.06202584,-115.1826425 -36.06202037,-115.1826359 -36.06201491,-115.1826293 -36.06200977,-115.182623 -36.06200431,-115.1826164 -36.06199885,-115.1826098 -36.06199371,-115.1826036 -36.06198825,-115.182597 -36.06198278,-115.1825904 -36.06197764,-115.1825841 -36.06197218,-115.1825775 -36.06196672,-115.1825709 -36.06196158,-115.1825647 -36.06195612,-115.1825581 -36.06195066,-115.1825515 -36.06194552,-115.1825452 -36.06194005,-115.1825386 -36.06193459,-115.182532 -36.06192945,-115.1825258 -36.06192399,-115.1825192 -36.06191853,-115.1825125 -36.06191339,-115.1825063 -36.06190793,-115.1824997 -36.06190247,-115.1824931 -36.06189732,-115.1824869 -36.06189186,-115.1824803 -36.0618869,-115.1824731 -36.06188248,-115.1824661 -36.06187778,-115.1824586 -36.06187308,-115.1824512 -36.06186865,-115.1824442 -36.06186395,-115.1824367 -36.06185925,-115.1824293 -36.06185482,-115.1824223 -36.06185012,-115.1824148 -36.06184542,-115.1824074 -36.061841,-115.1824004 -36.0618363,-115.1823929 -36.06183159,-115.1823855 -36.06182717,-115.1823785 -36.06182247,-115.182371 -36.06181777,-115.1823636 -36.06181334,-115.1823566 -36.06180864,-115.1823491 -36.06180394,-115.1823417 -36.06179952,-115.1823346 -36.06179481,-115.1823272 -36.06179011,-115.1823198 -36.06178569,-115.1823127 -36.06178099,-115.1823053 -36.06177629,-115.1822978 -36.06177186,-115.1822908 -36.06176716,-115.1822834 -36.06176246,-115.1822759 -36.06175803,-115.1822689 -36.06175333,-115.1822615 -36.06174863,-115.182254 -36.06174421,-115.182247 -36.06173951,-115.1822396 -36.0617348,-115.1822321 -36.06173038,-115.1822251 -36.06172568,-115.1822177 -36.06172098,-115.1822102 -36.06171655,-115.1822032 -36.06171187,-115.1821957 -36.06170774,-115.1821878 -36.06170385,-115.1821803 -36.06169972,-115.1821724 -36.06169559,-115.1821644 -36.0616917,-115.182157 -36.06168756,-115.182149 -36.06168343,-115.1821411 -36.06167954,-115.1821336 -36.06167541,-115.1821257 -36.06167128,-115.1821177 -36.06166739,-115.1821102 -36.06166326,-115.1821023 -36.06165913,-115.1820944 -36.06165524,-115.1820869 -36.06165111,-115.1820789 -36.06164698,-115.182071 -36.06164309,-115.1820635 -36.06163895,-115.1820556 -36.06163482,-115.1820476 -36.06163093,-115.1820401 -36.0616268,-115.1820322 -36.06162267,-115.1820243 -36.06161878,-115.1820168 -36.06161465,-115.1820088 -36.06161052,-115.1820009 -36.06160663,-115.1819934 -36.0616025,-115.1819855 -36.06159837,-115.1819775 -36.06159448,-115.1819701 -36.06159034,-115.1819621 -36.06158621,-115.1819542 -36.06158232,-115.1819467 -36.06157819,-115.1819387 -36.06157406,-115.1819308 -36.06157017,-115.1819233 -36.06156678,-115.1819149 -36.06156342,-115.1819064 -36.06156026,-115.1818984 -36.0615569,-115.1818899 -36.06155354,-115.1818815 -36.06155037,-115.1818735 -36.06154701,-115.181865 -36.06154365,-115.1818565 -36.06154049,-115.1818485 -36.06153713,-115.1818401 -36.06153377,-115.1818316 -36.06153061,-115.1818236 -36.06152725,-115.1818151 -36.06152389,-115.1818067 -36.06152073,-115.1817987 -36.06151737,-115.1817902 -36.06151401,-115.1817817 -36.06151084,-115.1817737 -36.06150748,-115.1817653 -36.06150412,-115.1817568 -36.06150096,-115.1817488 -36.0614976,-115.1817403 -36.06149424,-115.1817319 -36.06149108,-115.1817239 -36.06148772,-115.1817154 -36.06148436,-115.1817069 -36.0614812,-115.1816989 -36.06147784,-115.1816905 -36.06147448,-115.181682 -36.06147131,-115.181674 -36.06146795,-115.1816655 -36.06146459,-115.181657 -36.06146143,-115.1816491 -36.06145807,-115.1816406 -36.06145471,-115.1816321 -36.06145155,-115.1816241 -36.06144819,-115.1816157 -36.06144483,-115.1816072 -36.06144166,-115.1815992 -36.06143865,-115.1815905 -36.06143598,-115.1815817 -36.06143347,-115.1815734 -36.06143079,-115.1815645 -36.06142812,-115.1815557 -36.06142561,-115.1815474 -36.06142294,-115.1815385 -36.06142027,-115.1815297 -36.06141775,-115.1815214 -36.06141508,-115.1815125 -36.06141241,-115.1815037 -36.06140989,-115.1814954 -36.06140722,-115.1814865 -36.06140455,-115.1814777 -36.06140204,-115.1814694 -36.06139936,-115.1814605 -36.06139669,-115.1814517 -36.06139418,-115.1814434 -36.06139151,-115.1814345 -36.06138884,-115.1814257 -36.06138632,-115.1814173 -36.06138365,-115.1814085 -36.06138098,-115.1813997 -36.06137846,-115.1813913 -36.06137579,-115.1813825 -36.06137312,-115.1813737 -36.06137061,-115.1813653 -36.06136793,-115.1813565 -36.06136526,-115.1813477 -36.06136275,-115.1813393 -36.06136008,-115.1813305 -36.06135741,-115.1813217 -36.06135489,-115.1813133 -36.06135222,-115.1813045 -36.06134955,-115.1812956 -36.06134703,-115.1812873 -36.06134436,-115.1812785 -36.06134169,-115.1812696 -36.06133918,-115.1812613 -36.0613365,-115.1812525 -36.06133383,-115.1812436 -36.06133132,-115.1812353 -36.06132865,-115.1812265 -36.06132598,-115.1812176 -36.06132346,-115.1812093 -36.06132079,-115.1812005 -36.06131812,-115.1811916 -36.0613156,-115.1811833 -36.06131329,-115.1811743 -36.06131151,-115.1811652 -36.06130983,-115.1811565 -36.06130805,-115.1811473 -36.06130627,-115.1811382 -36.06130459,-115.1811295 -36.06130281,-115.1811204 -36.06130103,-115.1811112 -36.06129935,-115.1811025 -36.06129757,-115.1810934 -36.06129579,-115.1810842 -36.06129411,-115.1810756 -36.06129233,-115.1810664 -36.06129055,-115.1810572 -36.06128887,-115.1810486 -36.06128709,-115.1810394 -36.06128531,-115.1810302 -36.06128363,-115.1810216 -36.06128185,-115.1810124 -36.06128007,-115.1810032 -36.06127839,-115.1809946 -36.06127661,-115.1809854 -36.06127483,-115.1809763 -36.06127315,-115.1809676 -36.06127137,-115.1809584 -36.06126959,-115.1809493 -36.06126791,-115.1809406 -36.06126613,-115.1809315 -36.06126435,-115.1809223 -36.06126267,-115.1809136 -36.06126089,-115.1809045 -36.06125911,-115.1808953 -36.06125743,-115.1808867 -36.06125565,-115.1808775 -36.06125387,-115.1808683 -36.06125219,-115.1808597 -36.06125041,-115.1808505 -36.06124863,-115.1808413 -36.06124695,-115.1808327 -36.06124517,-115.1808235 -36.06124339,-115.1808143 -36.06124171,-115.1808057 -36.06123993,-115.1807965 -36.06123815,-115.1807873 -36.06123647,-115.1807787 -36.06123469,-115.1807695 -36.0612334,-115.1807602 -36.06123247,-115.1807514 -36.06123149,-115.1807421 -36.06123051,-115.1807327 -36.06122958,-115.1807239 -36.0612286,-115.1807146 -36.06122762,-115.1807052 -36.06122669,-115.1806964 -36.06122571,-115.1806871 -36.06122473,-115.1806777 -36.0612238,-115.1806689 -36.06122282,-115.1806595 -36.06122184,-115.1806502 -36.06122092,-115.1806414 -36.06121993,-115.180632 -36.06121895,-115.1806227 -36.06121803,-115.1806139 -36.06121704,-115.1806045 -36.06121606,-115.1805951 -36.06121514,-115.1805863 -36.06121415,-115.180577 -36.06121317,-115.1805676 -36.06121225,-115.1805588 -36.06121127,-115.1805495 -36.06121028,-115.1805401 -36.06120936,-115.1805313 -36.06120838,-115.1805219 -36.06120739,-115.1805126 -36.06120647,-115.1805038 -36.06120549,-115.1804944 -36.06120451,-115.1804851 -36.06120358,-115.1804763 -36.0612026,-115.1804669 -36.06120162,-115.1804575 -36.06120069,-115.1804487 -36.06119971,-115.1804394 -36.06119873,-115.18043 -36.0611978,-115.1804212 -36.06119682,-115.1804119 -36.06119584,-115.1804025 -36.06119491,-115.1803937 -36.06119401,-115.1803843 -36.06119419,-115.1803749 -36.06119436,-115.180366 -36.06119455,-115.1803566 -36.06119473,-115.1803472 -36.0611949,-115.1803383 -36.06119508,-115.1803289 -36.06119526,-115.1803194 -36.06119543,-115.1803106 -36.06119561,-115.1803011 -36.06119579,-115.1802917 -36.06119596,-115.1802828 -36.06119614,-115.1802734 -36.06119632,-115.1802639 -36.0611965,-115.1802551 -36.06119668,-115.1802456 -36.06119686,-115.1802362 -36.06119703,-115.1802273 -36.06119721,-115.1802179 -36.06119739,-115.1802085 -36.06119756,-115.1801996 -36.06119774,-115.1801902 -36.06119792,-115.1801807 -36.06119809,-115.1801718 -36.06119827,-115.1801624 -36.06119846,-115.180153 -36.06119863,-115.1801441 -36.06119881,-115.1801347 -36.06119899,-115.1801252 -36.06119916,-115.1801164 -36.06119934,-115.1801069 -36.06119952,-115.1800975 -36.06119969,-115.1800886 -36.06119987,-115.1800792 -36.06120005,-115.1800698 -36.06120022,-115.1800609 -36.06120041,-115.1800515 -36.06120059,-115.180042 -36.06120076,-115.1800331 -36.06120094,-115.1800237 -36.06120112,-115.1800143 -36.06120129,-115.1800054 -36.06120147,-115.179996 -36.06120165,-115.1799865 -36.06120182,-115.1799777 -36.061202,-115.1799682 -36.06120218,-115.1799588 -36.06120236,-115.1799499 -36.06120254,-115.1799405 -36.06120272,-115.1799311 -36.06120289,-115.1799222 -36.06120307,-115.1799128 -36.06120325,-115.1799033 -36.06120342,-115.1798944 -36.0612036,-115.179885 -36.06120378,-115.1798756 -36.06120395,-115.1798667 -36.06120413,-115.1798573 -36.06120432,-115.1798478 -36.06120449,-115.179839 -36.06120467,-115.1798295 -36.06120485,-115.1798201 -36.06120502,-115.1798112 -36.0612052,-115.1798018 -36.06120538,-115.1797924 -36.06120555,-115.1797835 -36.06120573,-115.179774 -36.06120591,-115.1797646 -36.06120608,-115.1797557 -36.06120627,-115.1797463 -36.06120645,-115.1797369 -36.06120662,-115.179728 -36.0612068,-115.1797186 -36.06120698,-115.1797091 -36.06120715,-115.1797003 -36.06120733,-115.1796908 -36.06120751,-115.1796814 -36.06120768,-115.1796725 -36.06120786,-115.1796631 -36.06120854,-115.1796538 -36.06121058,-115.1796452 -36.06121274,-115.1796362 -36.0612149,-115.1796271 -36.06121694,-115.1796186 -36.06121911,-115.1796096 -36.06122127,-115.1796005 -36.06122331,-115.179592 -36.06122547,-115.1795829 -36.06122764,-115.1795739 -36.06122967,-115.1795654 -36.06123184,-115.1795563 -36.061234,-115.1795473 -36.06123604,-115.1795388 -36.06123821,-115.1795297 -36.06124037,-115.1795207 -36.06124241,-115.1795121 -36.06124457,-115.1795031 -36.06124674,-115.179494 -36.06124877,-115.1794855 -36.06125094,-115.1794765 -36.0612531,-115.1794674 -36.06125514,-115.1794589 -36.06125731,-115.1794499 -36.06125947,-115.1794408 -36.06126151,-115.1794323 -36.06126367,-115.1794232 -36.06126584,-115.1794142 -36.06126787,-115.1794057 -36.06127004,-115.1793966 -36.0612722,-115.1793876 -36.06127424,-115.179379 -36.0612764,-115.17937 -36.06127857,-115.1793609 -36.06128061,-115.1793524 -36.06128277,-115.1793434 -36.06128494,-115.1793343 -36.06128697,-115.1793258 -36.06128914,-115.1793168 -36.0612913,-115.1793077 -36.06129334,-115.1792992 -36.0612955,-115.1792901 -36.06129767,-115.1792811 -36.06129971,-115.1792726 -36.06130187,-115.1792635 -36.06130404,-115.1792545 -36.06130607,-115.179246 -36.06130824,-115.1792369 -36.0613104,-115.1792279 -36.06131244,-115.1792193 -36.0613146,-115.1792103 -36.06131677,-115.1792012 -36.06131881,-115.1791927 -36.06132097,-115.1791837 -36.06132313,-115.1791746 -36.06132517,-115.1791661 -36.06132734,-115.179157 -36.0613295,-115.179148 -36.06133154,-115.1791395 -36.0613337,-115.1791304 -36.06133587,-115.1791214 -36.06133791,-115.1791129 -36.06134007,-115.1791038 -36.06134223,-115.1790948 -36.06134427,-115.1790862 -36.06134644,-115.1790772 -36.0613486,-115.1790681 -36.06135064,-115.1790596 -36.0613528,-115.1790506 -36.06135497,-115.1790415 -36.061357,-115.179033 -36.06135917,-115.179024 -36.06136133,-115.1790149 -36.06136337,-115.1790064 -36.06136554,-115.1789973 -36.0613677,-115.1789883 -36.06136974,-115.1789798 -36.0613719,-115.1789707 -36.06137407,-115.1789617 -36.0613761,-115.1789531 -36.06137827,-115.1789441 -36.06138043,-115.178935 -36.06138247,-115.1789265 -36.06138464,-115.1789175 -36.0613868,-115.1789084 -36.06138884,-115.1788999 -36.061391,-115.1788909 -36.06139317,-115.1788818 -36.0613952,-115.1788733 -36.06139737,-115.1788642 -36.06139953,-115.1788552 -36.06140157,-115.1788467 -36.06140373,-115.1788376 -36.0614059,-115.1788286 -36.06140794,-115.1788201 -36.0614101,-115.178811 -36.06141227,-115.178802 -36.0614143,-115.1787934 -36.06141647,-115.1787844 -36.06141863,-115.1787753 -36.06142067,-115.1787668 -36.06142283,-115.1787578 -36.061425,-115.1787487 -36.06142704,-115.1787402 -36.0614292,-115.1787311 -36.06143137,-115.1787221 -36.0614334,-115.1787136 -36.06143557,-115.1787045 -36.06143773,-115.1786955 -36.06143977,-115.178687 -36.06144193,-115.1786779 -36.0614441,-115.1786689 -36.06144614,-115.1786603 -36.0614483,-115.1786513 -36.06145046,-115.1786422 -36.06145366,-115.1786343 -36.06145749,-115.1786262 -36.06146133,-115.178618 -36.06146493,-115.1786103 -36.06146877,-115.1786021 -36.0614726,-115.178594 -36.06147621,-115.1785863 -36.06148004,-115.1785781 -36.06148387,-115.1785699 -36.06148748,-115.1785622 -36.06149132,-115.1785541 -36.06149515,-115.1785459 -36.06149876,-115.1785382 -36.06150259,-115.1785301 -36.06150642,-115.1785219 -36.06151003,-115.1785142 -36.06151386,-115.178506 -36.0615177,-115.1784979 -36.06152131,-115.1784902 -36.06152514,-115.178482 -36.06152897,-115.1784738 -36.06153258,-115.1784661 -36.06153641,-115.178458 -36.06154025,-115.1784498 -36.06154385,-115.1784421 -36.06154769,-115.1784339 -36.06155152,-115.1784258 -36.06155513,-115.1784181 -36.06155896,-115.1784099 -36.06156279,-115.1784017 -36.0615664,-115.1783941 -36.06157024,-115.1783859 -36.06157407,-115.1783777 -36.06157768,-115.17837 -36.06158151,-115.1783619 -36.06158534,-115.1783537 -36.06158895,-115.178346 -36.06159278,-115.1783378 -36.06159662,-115.1783297 -36.06160022,-115.178322 -36.06160406,-115.1783138 -36.06160789,-115.1783056 -36.0616115,-115.1782979 -36.06161533,-115.1782898 -36.06161917,-115.1782816 -36.06162277,-115.1782739 -36.06162661,-115.1782658 -36.06163044,-115.1782576 -36.06163405,-115.1782499 -36.06163788,-115.1782417 -36.06164171,-115.1782336 -36.06164532,-115.1782259 -36.06164916,-115.1782177 -36.06165299,-115.1782095 -36.0616566,-115.1782018 -36.06166043,-115.1781937 -36.06166426,-115.1781855 -36.06166787,-115.1781778 -36.0616717,-115.1781696 -36.06167554,-115.1781615 -36.06167914,-115.1781538 -36.06168298,-115.1781456 -36.06168681,-115.1781374 -36.06169042,-115.1781298 -36.06169425,-115.1781216 -36.06169809,-115.1781134 -36.06170169,-115.1781057 -36.06170553,-115.1780976 -36.06170936,-115.1780894 -36.06171297,-115.1780817 -36.0617168,-115.1780735 -36.06172063,-115.1780654 -36.06172424,-115.1780577 -36.06172807,-115.1780495 -36.06173191,-115.1780413 -36.06173552,-115.1780336 -36.06173935,-115.1780255 -36.06174318,-115.1780173 -36.06174679,-115.1780096 -36.06175062,-115.1780014 -36.06175446,-115.1779933 -36.06175806,-115.1779856 -36.0617619,-115.1779774 -36.06176573,-115.1779693 -36.06176934,-115.1779616 -36.06177317,-115.1779534 -36.06177701,-115.1779452 -36.06178061,-115.1779375 -36.06178445,-115.1779294 -36.06178828,-115.1779212 -36.06179189,-115.1779135 -36.06179572,-115.1779053 -36.06179955,-115.1778972 -36.06180316,-115.1778895 -36.06180699,-115.1778813 -36.06181083,-115.1778731 -36.06181444,-115.1778655 -36.06181827,-115.1778573 -36.0618221,-115.1778491 -36.06182571,-115.1778414 -36.06182954,-115.1778333 -36.06183338,-115.1778251 -36.06183698,-115.1778174 -36.06184082,-115.1778092 -36.06184465,-115.1778011 -36.06184826,-115.1777934 -36.06185209,-115.1777852 -36.06185593,-115.177777 -36.06185953,-115.1777693 -36.06186337,-115.1777612 -36.0618672,-115.177753 -36.06187081,-115.1777453 -36.06187464,-115.1777371 -36.06187847,-115.177729 -36.06188208,-115.1777213 -36.06188591,-115.1777131 -36.06188975,-115.1777049 -36.06189336,-115.1776973 -36.06189719,-115.1776891 -36.06190102,-115.1776809 -36.06190463,-115.1776732 -36.06190846,-115.1776651 -36.0619123,-115.1776569 -36.0619159,-115.1776492 -36.06191974,-115.177641 -36.06192357,-115.1776329 -36.06192718,-115.1776252 -36.06193101,-115.177617 -36.06193485,-115.1776088 -36.06193845,-115.1776012 -36.06194229,-115.177593 -36.06194612,-115.1775848 -36.06194973,-115.1775771 -36.06195356,-115.177569 -36.06195739,-115.1775608 -36.061961,-115.1775531 -36.06196483,-115.1775449 -36.06196867,-115.1775368 -36.06197228,-115.1775291 -36.06197611,-115.1775209 -36.06197983,-115.1775126 -36.06198329,-115.1775049 -36.06198697,-115.1774966 -36.06199065,-115.1774883 -36.06199411,-115.1774805 -36.0619978,-115.1774722 -36.06200148,-115.177464 -36.06200494,-115.1774562 -36.06200862,-115.1774479 -36.0620123,-115.1774396 -36.06201577,-115.1774318 -36.06201945,-115.1774236 -36.06202313,-115.1774153 -36.06202659,-115.1774075 -36.06203027,-115.1773992 -36.06203395,-115.177391 -36.06203742,-115.1773832 -36.0620411,-115.1773749 -36.06204478,-115.1773666 -36.06204824,-115.1773588 -36.06205192,-115.1773506 -36.0620556,-115.1773423 -36.06205907,-115.1773345 -36.06206275,-115.1773262 -36.06206643,-115.1773179 -36.06206989,-115.1773102 -36.06207357,-115.1773019 -36.06207725,-115.1772936 -36.06208072,-115.1772858 -36.0620844,-115.1772775 -36.06208808,-115.1772693 -36.06209154,-115.1772615 -36.06209522,-115.1772532 -36.06209891,-115.1772449 -36.06210237,-115.1772371 -36.06210605,-115.1772289 -36.06210973,-115.1772206 -36.06211319,-115.1772128 -36.06211688,-115.1772045 -36.06212056,-115.1771962 -36.06212383,-115.1771883 -36.06212716,-115.1771798 -36.06213049,-115.1771713 -36.06213363,-115.1771633 -36.06213696,-115.1771548 -36.06214029,-115.1771464 -36.06214342,-115.1771384 -36.06214676,-115.1771299 -36.06215009,-115.1771214 -36.06215322,-115.1771134 -36.06215655,-115.1771049 -36.06215988,-115.1770964 -36.06216302,-115.1770884 -36.06216635,-115.1770799 -36.06216968,-115.1770714 -36.06217282,-115.1770634 -36.06217615,-115.1770549 -36.06217948,-115.1770464 -36.06218262,-115.1770384 -36.06218595,-115.1770299 -36.06218928,-115.1770214 -36.06219241,-115.1770134 -36.06219574,-115.1770049 -36.06219908,-115.1769964 -36.06220221,-115.1769884 -36.06220554,-115.1769799 -36.06220887,-115.1769714 -36.06221201,-115.1769634 -36.06221534,-115.1769549 -36.06221867,-115.1769464 -36.06222181,-115.1769384 -36.06222514,-115.1769299 -36.06222847,-115.1769214 -36.0622316,-115.1769134 -36.06223494,-115.1769049 -36.06223827,-115.1768965 -36.0622414,-115.1768885 -36.06224473,-115.17688 -36.06224807,-115.1768715 -36.0622512,-115.1768635 -36.06225453,-115.176855 -36.06225786,-115.1768465 -36.062261,-115.1768385 -36.06226433,-115.17683 -36.06226766,-115.1768215 -36.0622708,-115.1768135 -36.06227413,-115.176805 -36.06227746,-115.1767965 -36.06228059,-115.1767885 -36.06228393,-115.17678 -36.06228726,-115.1767715 -36.06229039,-115.1767635 -36.06229372,-115.176755 -36.06229705,-115.1767465 -36.06230014,-115.1767385 -36.06230257,-115.1767295 -36.062305,-115.1767206 -36.06230729,-115.1767122 -36.06230972,-115.1767032 -36.06231215,-115.1766943 -36.06231443,-115.1766859 -36.06231686,-115.1766769 -36.06231929,-115.176668 -36.06232158,-115.1766595 -36.06232401,-115.1766506 -36.06232644,-115.1766416 -36.06232873,-115.1766332 -36.06233116,-115.1766243 -36.06233359,-115.1766153 -36.06233587,-115.1766069 -36.0623383,-115.176598 -36.06234073,-115.176589 -36.06234302,-115.1765806 -36.06234545,-115.1765716 -36.06234788,-115.1765627 -36.06235017,-115.1765543 -36.0623526,-115.1765453 -36.06235503,-115.1765364 -36.06235731,-115.176528 -36.06235974,-115.176519 -36.06236217,-115.1765101 -36.06236446,-115.1765016 -36.06236689,-115.1764927 -36.06236932,-115.1764837 -36.06237161,-115.1764753 -36.06237404,-115.1764664 -36.06237647,-115.1764574 -36.06237875,-115.176449 -36.06238118,-115.1764401 -36.06238361,-115.1764311 -36.06238561,-115.1764226 -36.06238726,-115.1764134 -36.0623889,-115.1764042 -36.06239045,-115.1763955 -36.0623921,-115.1763863 -36.06239375,-115.1763771 -36.0623953,-115.1763684 -36.06239694,-115.1763592 -36.06239859,-115.17635 -36.06240014,-115.1763413 -36.06240178,-115.1763321 -36.06240343,-115.1763228 -36.06240498,-115.1763142 -36.06240663,-115.176305 -36.06240827,-115.1762957 -36.06240982,-115.1762871 -36.06241147,-115.1762779 -36.06241312,-115.1762686 -36.06241467,-115.17626 -36.06241631,-115.1762508 -36.06241796,-115.1762415 -36.06241951,-115.1762329 -36.06242115,-115.1762237 -36.0624228,-115.1762144 -36.06242435,-115.1762058 -36.062426,-115.1761966 -36.06242764,-115.1761873 -36.06242919,-115.1761787 -36.06243084,-115.1761695 -36.06243249,-115.1761602 -36.06243404,-115.1761516 -36.06243568,-115.1761424 -36.06243733,-115.1761331 -36.06243888,-115.1761245 -36.06244053,-115.1761153 -36.06244217,-115.176106 -36.06244372,-115.1760974 -36.06244537,-115.1760882 -36.06244701,-115.1760789 -36.06244856,-115.1760703 -36.06245021,-115.1760611 -36.06245186,-115.1760518 -36.06245341,-115.1760432 -36.06245505,-115.1760339 -36.0624567,-115.1760247 -36.06245825,-115.1760161 -36.0624599,-115.1760068 -36.06246154,-115.1759976 -36.06246309,-115.175989 -36.06246474,-115.1759797 -36.06246638,-115.1759705 -36.06246793,-115.1759619 -36.06246958,-115.1759526 -36.06247123,-115.1759434 -36.06247278,-115.1759348 -36.06247442,-115.1759255 -36.06247607,-115.1759163 -36.06247762,-115.1759077 -36.06247927,-115.1758984 -36.06248091,-115.1758892 -36.06248246,-115.1758806 -36.06248411,-115.1758713 -36.06248575,-115.1758621 -36.0624873,-115.1758535 -36.06248895,-115.1758442 -36.0624906,-115.175835 -36.06249215,-115.1758264 -36.06249379,-115.1758171 -36.06249544,-115.1758079 -36.06249699,-115.1757993 -36.06249864,-115.17579 -36.06249962,-115.1757807 -36.06250036,-115.1757719 -36.06250115,-115.1757625 -36.06250194,-115.1757531 -36.06250269,-115.1757443 -36.06250348,-115.1757349 -36.06250427,-115.1757255 -36.06250501,-115.1757167 -36.0625058,-115.1757073 -36.06250659,-115.1756979 -36.06250734,-115.1756891 -36.06250813,-115.1756797 -36.06250892,-115.1756703 -36.06250966,-115.1756615 -36.06251045,-115.1756521 -36.06251125,-115.1756427 -36.06251199,-115.1756339 -36.06251278,-115.1756245 -36.06251357,-115.1756151 -36.06251432,-115.1756063 -36.06251511,-115.1755969 -36.0625159,-115.1755875 -36.06251664,-115.1755787 -36.06251743,-115.1755693 -36.06251822,-115.1755599 -36.06251897,-115.1755511 -36.06251976,-115.1755417 -36.06252055,-115.1755323 -36.06252129,-115.1755235 -36.06252208,-115.1755141 -36.06252288,-115.1755047 -36.06252362,-115.1754958 -36.06252441,-115.1754865 -36.0625252,-115.1754771 -36.06252595,-115.1754682 -36.06252674,-115.1754589 -36.06252753,-115.1754495 -36.06252827,-115.1754406 -36.06252906,-115.1754313 -36.06252985,-115.1754219 -36.0625306,-115.175413 -36.06253139,-115.1754037 -36.06253218,-115.1753943 -36.06253292,-115.1753854 -36.06253371,-115.1753761 -36.0625345,-115.1753667 -36.06253525,-115.1753578 -36.06253604,-115.1753485 -36.06253683,-115.1753391 -36.06253758,-115.1753302 -36.06253837,-115.1753209 -36.06253916,-115.1753115 -36.0625399,-115.1753026 -36.06254069,-115.1752933 -36.06254148,-115.1752839 -36.06254223,-115.175275 -36.06254302,-115.1752657 -36.06254381,-115.1752563 -36.06254398,-115.1752474 -36.06254395,-115.175238 -36.06254392,-115.1752285 -36.06254389,-115.1752197 -36.06254385,-115.1752102 -36.06254382,-115.1752008 -36.06254379,-115.1751919 -36.06254376,-115.1751825 -36.06254373,-115.175173 -36.0625437,-115.1751642 -36.06254367,-115.1751547 -36.06254364,-115.1751453 -36.06254361,-115.1751364 -36.06254358,-115.175127 -36.06254355,-115.1751175 -36.06254352,-115.1751087 -36.06254348,-115.1750992 -36.06254345,-115.1750898 -36.06254342,-115.1750809 -36.06254339,-115.1750715 -36.06254336,-115.175062 -36.06254333,-115.1750532 -36.0625433,-115.1750437 -36.06254327,-115.1750343 -36.06254324,-115.1750254 -36.06254321,-115.175016 -36.06254318,-115.1750065 -36.06254315,-115.1749977 -36.06254311,-115.1749882 -36.06254308,-115.1749788 -36.06254305,-115.1749699 -36.06254302,-115.1749605 -36.06254299,-115.1749511 -36.06254296,-115.1749422 -36.06254293,-115.1749327 -36.0625429,-115.1749233 -36.06254287,-115.1749144 -36.06254284,-115.174905 -36.06254281,-115.1748956 -36.06254278,-115.1748867 -36.06254274,-115.1748772 -36.06254271,-115.1748678 -36.06254268,-115.1748589 -36.06254265,-115.1748495 -36.06254262,-115.1748401 -36.06254259,-115.1748312 -36.06254256,-115.1748217 -36.06254253,-115.1748123 -36.0625425,-115.1748034 -36.06254247,-115.174794 -36.06254244,-115.1747846 -36.06254241,-115.1747757 -36.06254237,-115.1747662 -36.06254234,-115.1747568 -36.06254231,-115.1747479 -36.06254228,-115.1747385 -36.06254225,-115.1747291 -36.06254222,-115.1747202 -36.06254219,-115.1747108 -36.06254216,-115.1747013 -36.06254213,-115.1746924 -36.0625421,-115.174683 -36.06254207,-115.1746736 -36.06254204,-115.1746647 -36.062542,-115.1746553 -36.06254199,-115.1746458 -36.06254197,-115.1746369 -36.06254195,-115.1746275 -36.06254194,-115.1746181 -36.06254192,-115.1746092 -36.06254191,-115.1745998 -36.06254189,-115.1745903 -36.06254188,-115.1745814 -36.06254186,-115.174572 -36.06254184,-115.1745626 -36.06254183,-115.1745537 -36.06254181,-115.1745443 -36.0625418,-115.1745348 -36.06254178,-115.1745259 -36.06254177,-115.1745165 -36.06254175,-115.1745071 -36.06254173,-115.1744982 -36.06254172,-115.1744888 -36.0625417,-115.1744793 -36.06254169,-115.1744704 -36.06254167,-115.174461 -36.06254166,-115.1744516 -36.06254164,-115.1744427 -36.06254162,-115.1744333 -36.06254161,-115.1744238 -36.06254159,-115.174415 -36.06254158,-115.1744055 -36.06254156,-115.1743961 -36.06254155,-115.1743872 -36.06254153,-115.1743778 -36.06254151,-115.1743683 -36.0625415,-115.1743595 -36.06254148,-115.17435 -36.06254147,-115.1743406 -36.06254145,-115.1743317 -36.06254143,-115.1743223 -36.06254142,-115.1743128 -36.0625414,-115.174304 -36.06254139,-115.1742945 -36.06254137,-115.1742851 -36.06254136,-115.1742762 -36.06254134,-115.1742668 -36.06254132,-115.1742573 -36.06254131,-115.1742485 -36.06254129,-115.174239 -36.06254128,-115.1742296 -36.06254126,-115.1742207 -36.06254125,-115.1742113 -36.06254123,-115.1742018 -36.06254121,-115.174193 -36.0625412,-115.1741835 -36.06254118,-115.1741741 -36.06254117,-115.1741652 -36.06254115,-115.1741558 -36.06254114,-115.1741463 -36.06254112,-115.1741375 -36.0625411,-115.174128 -36.06254109,-115.1741186 -36.06254107,-115.1741097 -36.06254106,-115.1741003 -36.06254104,-115.1740908 -36.06254103,-115.174082 -36.06254101,-115.1740725 -36.06254099,-115.1740631 -36.06254098,-115.1740542 -36.06254096,-115.1740448 -36.06254095,-115.1740354 -36.06254093,-115.1740265 -36.06254091,-115.174017 -36.0625409,-115.1740076 -36.06254088,-115.1739987 -36.06254087,-115.1739893 -36.06254085,-115.1739799 -36.06254084,-115.173971 -36.06254082,-115.1739615 -36.0625408,-115.1739521 -36.06254079,-115.1739432 -36.06254077,-115.1739338 -36.06254076,-115.1739244 -36.06254074,-115.1739155 -36.06254073,-115.173906 -36.06254071,-115.1738966 -36.06254069,-115.1738877 -36.06254068,-115.1738783 -36.06254066,-115.1738689 -36.06254065,-115.17386 -36.06254063,-115.1738505 -36.06254062,-115.1738411 -36.0625406,-115.1738322 -36.06254058,-115.1738228 -36.06254057,-115.1738134 -36.06254055,-115.1738045 -36.06254054,-115.173795 -36.06254052,-115.1737856 -36.06254051,-115.1737767 -36.06254049,-115.1737673 -36.06254047,-115.1737579 -36.06254046,-115.173749 -36.06254044,-115.1737396 -36.06254043,-115.1737301 -36.06254041,-115.1737212 -36.06254039,-115.1737118 -36.06254038,-115.1737024 -36.06254036,-115.1736935 -36.06254035,-115.1736841 -36.06254033,-115.1736746 -36.06254032,-115.1736657 -36.0625403,-115.1736563 -36.06254028,-115.1736469 -36.06254027,-115.173638 -36.06254025,-115.1736286 -36.06254024,-115.1736191 -36.06254022,-115.1736102 -36.06254021,-115.1736008 -36.06254019,-115.1735914 -36.06254017,-115.1735825 -36.06254016,-115.1735731 -36.06254014,-115.1735636 -36.06254013,-115.1735547 -36.06254011,-115.1735453 -36.0625401,-115.1735359 -36.06254008,-115.173527 -36.06254006,-115.1735176 -36.06254005,-115.1735081 -36.06254003,-115.1734992 -36.06254002,-115.1734898 -36.06254,-115.1734804 -36.06253999,-115.1734715 -36.06253997,-115.1734621 -36.06253995,-115.1734526 -36.06253994,-115.1734438 -36.06253992,-115.1734343 -36.06253991,-115.1734249 -36.06253989,-115.173416 -36.06253987,-115.1734066 -36.06253986,-115.1733971 -36.06253984,-115.1733883 -36.06253983,-115.1733788 -36.06253981,-115.1733694 -36.0625398,-115.1733605 -36.06253978,-115.1733511 -36.06253976,-115.1733416 -36.06253975,-115.1733328 -36.06253973,-115.1733233 -36.06253972,-115.1733139 -36.0625397,-115.173305 -36.06253969,-115.1732956 -36.06253967,-115.1732861 -36.06253965,-115.1732773 -36.06253964,-115.1732678 -36.06253962,-115.1732584 -36.06253961,-115.1732495 -36.06253959,-115.1732401 -36.06253958,-115.1732306 -36.06253956,-115.1732218 -36.06253954,-115.1732123 -36.06253953,-115.1732029 -36.06253951,-115.173194 -36.0625395,-115.1731846 -36.06253948,-115.1731751 -36.06253947,-115.1731663 -36.06253945,-115.1731568 -36.06253943,-115.1731474 -36.06253942,-115.1731385 -36.0625394,-115.1731291 -36.06253939,-115.1731196 -36.06253937,-115.1731108 -36.06253935,-115.1731013 -36.06253934,-115.1730919 -36.06253932,-115.173083 -36.06253931,-115.1730736 -36.06253929,-115.1730642 -36.06253928,-115.1730553 -36.06253926,-115.1730458 -36.06253924,-115.1730364 -36.06253923,-115.1730275 -36.06253921,-115.1730181 -36.0625392,-115.1730087 -36.06253918,-115.1729998 -36.06253917,-115.1729903 -36.06253915,-115.1729809 -36.06253913,-115.172972 -36.06253912,-115.1729626 -36.0625391,-115.1729532 -36.06253909,-115.1729443 -36.06253907,-115.1729348 -36.06253906,-115.1729254 -36.06253904,-115.1729165 -36.06253902,-115.1729071 -36.06253901,-115.1728977 -36.06253899,-115.1728888 -36.06253897,-115.1728793 -36.06253895,-115.1728699 -36.06253893,-115.172861 -36.0625389,-115.1728516 -36.06253888,-115.1728422 -36.06253886,-115.1728333 -36.06253884,-115.1728238 -36.06253882,-115.1728144 -36.0625388,-115.1728055 -36.06253877,-115.1727961 -36.06253875,-115.1727867 -36.06253873,-115.1727778 -36.06253871,-115.1727684 -36.06253869,-115.1727589 -36.06253867,-115.17275 -36.06253864,-115.1727406 -36.06253862,-115.1727312 -36.0625386,-115.1727223 -36.06253858,-115.1727129 -36.06253856,-115.1727034 -36.06253854,-115.1726945 -36.06253851,-115.1726851 -36.06253849,-115.1726757 -36.06253847,-115.1726668 -36.06253845,-115.1726574 -36.06253843,-115.1726479 -36.06253841,-115.172639 -36.06253838,-115.1726296 -36.06253836,-115.1726202 -36.06253834,-115.1726113 -36.06253832,-115.1726019 -36.0625383,-115.1725924 -36.06253828,-115.1725835 -36.06253825,-115.1725741 -36.06253823,-115.1725647 -36.06253821,-115.1725558 -36.06253819,-115.1725464 -36.06253817,-115.1725369 -36.06253815,-115.1725281 -36.06253813,-115.1725186 -36.0625381,-115.1725092 -36.06253808,-115.1725003 -36.06253806,-115.1724909 -36.06253804,-115.1724814 -36.06253802,-115.1724726 -36.06253799,-115.1724631 -36.06253795,-115.1724537 -36.06253791,-115.1724448 -36.06253787,-115.1724354 -36.06253783,-115.1724259 -36.06253779,-115.1724171 -36.06253775,-115.1724076 -36.06253771,-115.1723982 -36.06253767,-115.1723893 -36.06253763,-115.1723799 -36.06253759,-115.1723704 -36.06253755,-115.1723616 -36.06253751,-115.1723521 -36.06253747,-115.1723427 -36.06253743,-115.1723338 -36.06253739,-115.1723244 -36.06253735,-115.1723149 -36.06253731,-115.1723061 -36.06253727,-115.1722966 -36.06253723,-115.1722872 -36.06253719,-115.1722783 -36.06253715,-115.1722689 -36.06253711,-115.1722594 -36.06253707,-115.1722506 -36.06253703,-115.1722411 -36.06253887,-115.172234 -36.06254608,-115.1722338 -36.06255374,-115.1722336 -36.0625614,-115.1722334 -36.06256861,-115.1722332 -36.06257627,-115.172233 -36.06258393,-115.1722328 -36.06259114,-115.1722327 -36.0625988,-115.1722325 -36.06260646,-115.1722323 -36.06261367,-115.1722321 -36.06262133,-115.1722319 -36.06262899,-115.1722317 -36.0626362,-115.1722315 -36.06264387,-115.1722314 -36.06265153,-115.1722312 -36.06265874,-115.172231 -36.0626664,-115.1722311 -36.06267406,-115.1722312 -36.06268127,-115.1722313 -36.06268893,-115.1722315 -36.06269659,-115.1722316 -36.06270381,-115.1722317 -36.06271147,-115.1722318 -36.06271913,-115.1722319 -36.06272634,-115.172232 -36.062734,-115.1722321 -36.06274166,-115.1722323 -36.06274888,-115.1722324 -36.06275654,-115.1722325 -36.0627642,-115.1722326 -36.06277141,-115.1722327 -36.06277907,-115.1722328 -36.06278673,-115.1722329 -36.06279395,-115.172233 -36.06280161,-115.1722331 -36.06280927,-115.1722333 -36.06281648,-115.1722334 -36.06282414,-115.1722335 -36.0628318,-115.1722336 -36.06283902,-115.1722337 -36.06284668,-115.1722338 -36.06285434,-115.1722339 -36.06286155,-115.172234 -36.06286921,-115.1722342 -36.06287687,-115.1722343 -36.06288408,-115.1722344 -36.06289175,-115.1722345 -36.06289941,-115.1722346 -36.06290662,-115.1722347 -36.06291428,-115.1722348 -36.06292194,-115.1722349 -36.06292915,-115.1722351 -36.06293682,-115.1722352 -36.06294448,-115.1722353 -36.06295169,-115.1722354 -36.06295935,-115.1722355 -36.06296701,-115.1722356 -36.06297422,-115.1722357 -36.06298189,-115.1722358 -36.06298955,-115.172236 -36.06299676,-115.1722361 -36.06300442,-115.1722362 -36.06301208,-115.1722363 -36.06301929,-115.1722364 -36.06302696,-115.1722365 -36.06303462,-115.1722366 -36.06304183,-115.1722367 -36.06304949,-115.1722369 -36.06305715,-115.172237 -36.06306436,-115.172237 -36.06307203,-115.1722371 -36.06307969,-115.1722372 -36.0630869,-115.1722372 -36.06309456,-115.1722373 -36.06310222,-115.1722373 -36.06310944,-115.1722374 -36.0631171,-115.1722374 -36.06312476,-115.1722375 -36.06313197,-115.1722376 -36.06313963,-115.1722376 -36.0631473,-115.1722377 -36.06315451,-115.1722377 -36.06316217,-115.1722378 -36.06316983,-115.1722379 -36.06317704,-115.1722379 -36.06318471,-115.172238 -36.06319237,-115.172238 -36.06319958,-115.1722381 -36.06320724,-115.1722381 -36.0632149,-115.1722382 -36.06322212,-115.1722383 -36.06322978,-115.1722383 -36.06323744,-115.1722384 -36.06324465,-115.1722384 -36.06325231,-115.1722385 -36.06325998,-115.1722386 -36.06326719,-115.1722386 -36.06327485,-115.1722387 -36.06328251,-115.1722387 -36.06328972,-115.1722388 -36.06329739,-115.1722388 -36.06330505,-115.1722389 -36.06331226,-115.172239 -36.06331992,-115.172239 -36.06332758,-115.1722391 -36.0633348,-115.1722391 -36.06334246,-115.1722392 -36.06335012,-115.1722392 -36.06335733,-115.1722393 -36.06336499,-115.1722394 -36.06337266,-115.1722394 -36.06337987,-115.1722395 -36.06338753,-115.1722395 -36.06339519,-115.1722396 -36.0634024,-115.1722397 -36.06341007,-115.1722397 -36.06341773,-115.1722398 -36.06342494,-115.1722398 -36.0634326,-115.1722399 -36.06344026,-115.1722399 -36.06344748,-115.17224 -36.06345514,-115.1722401 -36.0634628,-115.1722401 -36.06347001,-115.1722402 -36.06347767,-115.1722402 -36.06348534,-115.1722403 -36.06349255,-115.1722403 -36.06350021,-115.1722404 -36.06350787,-115.1722405 -36.06351508,-115.1722405 -36.06352275,-115.1722406 -36.06353041,-115.1722406 -36.06353762,-115.1722407 -36.06354528,-115.1722408 -36.06355294,-115.1722408 -36.06356016,-115.1722409 -36.06356782,-115.1722409 -36.06357548,-115.172241 -36.06358269,-115.172241 -36.06359035,-115.1722411 -36.06359802,-115.1722412 -36.06360523,-115.1722412 -36.06361289,-115.1722413 -36.06362055,-115.1722413 -36.06362776,-115.1722414 -36.06363543,-115.1722414 -36.06364309,-115.1722415 -36.0636503,-115.1722416 -36.06365796,-115.1722416 -36.06366563,-115.1722417 -36.06367284,-115.1722417 -36.0636805,-115.1722418 -36.06368816,-115.1722419 -36.06369537,-115.1722419 -36.06370304,-115.172242 -36.0637107,-115.172242 -36.06371791,-115.1722421 -36.06372557,-115.1722421 -36.06373323,-115.1722422 -36.06374044,-115.1722423 -36.06374811,-115.1722423 -36.06375577,-115.1722424 -36.06376298,-115.1722424 -36.06377064,-115.1722425 -36.06377831,-115.1722426 -36.06378552,-115.1722426 -36.06379318,-115.1722427 -36.06380084,-115.1722427 -36.06380805,-115.1722428 -36.06381572,-115.1722428 -36.06382338,-115.1722429 -36.06383059,-115.172243 -36.06383825,-115.172243 -36.06384591,-115.1722431 -36.06385313,-115.1722431 -36.06386079,-115.1722432 -36.06386845,-115.1722432 -36.06387566,-115.1722433 -36.06388332,-115.1722434 -36.06389099,-115.1722434 -36.0638982,-115.1722435 -36.06390586,-115.1722435 -36.06391352,-115.1722436 -36.06392073,-115.1722437 -36.0639284,-115.1722437 -36.06393606,-115.1722438 -36.06394327,-115.1722438 -36.06395093,-115.1722439 -36.06395859,-115.1722439 -36.06396581,-115.172244 -36.06397347,-115.1722439 -36.06398113,-115.1722437 -36.06398834,-115.1722436 -36.063996,-115.1722434 -36.06400366,-115.1722433 -36.06401087,-115.1722432 -36.06401853,-115.172243 -36.0640262,-115.1722429 -36.06403341,-115.1722428 -36.06404107,-115.1722426 -36.06404873,-115.1722425 -36.06405594,-115.1722423 -36.0640636,-115.1722422 -36.06407126,-115.1722421 -36.06407848,-115.1722419 -36.06408614,-115.1722418 -36.0640938,-115.1722417 -36.06410101,-115.1722415 -36.06410867,-115.1722414 -36.06411633,-115.1722412 -36.06412354,-115.1722411 -36.0641312,-115.172241 -36.06413887,-115.1722408 -36.06414608,-115.1722407 -36.06415374,-115.1722406 -36.0641614,-115.1722404 -36.06416861,-115.1722403 -36.06417627,-115.1722401 -36.06418393,-115.17224 -36.06419115,-115.1722399 -36.06419881,-115.1722397 -36.06420647,-115.1722396 -36.06421368,-115.1722395 -36.06422134,-115.1722393 -36.064229,-115.1722392 -36.06423621,-115.172239 -36.06424387,-115.1722389 -36.06425154,-115.1722388 -36.06425875,-115.1722386 -36.06426641,-115.1722385 -36.06427407,-115.1722383 -36.06428128,-115.1722382 -36.06428894,-115.1722381 -36.0642966,-115.1722379 -36.06430382,-115.1722378 -36.06431148,-115.1722377 -36.06431914,-115.1722375 -36.06432635,-115.1722374 -36.06433401,-115.1722372 -36.06434167,-115.1722371 -36.06434888,-115.172237 -36.06435654,-115.1722368 -36.06436421,-115.1722367 -36.06437142,-115.1722366 -36.06437908,-115.1722364 -36.06438674,-115.1722363 -36.06439395,-115.1722361 -36.06440161,-115.172236 -36.06440927,-115.1722359 -36.06441648,-115.1722357 -36.06442415,-115.1722356 -36.06443181,-115.1722354 -36.06443902,-115.1722353 -36.06444668,-115.1722352 -36.06445434,-115.172235 -36.06445595,-115.1722418 -36.06445587,-115.1722513 -36.0644558,-115.1722607 -36.06445572,-115.1722696 -36.06445565,-115.172279 -36.06445557,-115.1722885 -36.0644555,-115.1722973 -36.06445543,-115.1723068 -36.06445535,-115.1723162 -36.06445528,-115.1723251 -36.06445521,-115.1723345 -36.06445513,-115.172344 -36.06445506,-115.1723528 -36.06445499,-115.1723623 -36.06445491,-115.1723717 -36.06445484,-115.1723806 -36.06445476,-115.17239 -36.06445469,-115.1723994 -36.06445462,-115.1724083 -36.06445454,-115.1724178 -36.06445447,-115.1724272 -36.0644544,-115.1724361 -36.06445432,-115.1724455 -36.06445425,-115.1724549 -36.06445418,-115.1724638 -36.0644541,-115.1724733 -36.06445403,-115.1724827 -36.06445394,-115.1724916 -36.06445385,-115.172501 -36.06445375,-115.1725104 -36.06445366,-115.1725193 -36.06445356,-115.1725288 -36.06445346,-115.1725382 -36.06445337,-115.1725471 -36.06445327,-115.1725565 -36.06445318,-115.1725659 -36.06445308,-115.1725748 -36.06445299,-115.1725842 -36.06445289,-115.1725937 -36.0644528,-115.1726026 -36.0644527,-115.172612 -36.0644526,-115.1726214 -36.06445251,-115.1726303 -36.06445242,-115.1726397 -36.06445232,-115.1726492 -36.06445223,-115.1726581 -36.06445213,-115.1726675 -36.06445203,-115.1726769 -36.06445194,-115.1726858 -36.06445184,-115.1726952 -36.06445175,-115.1727047 -36.06445165,-115.1727135 -36.06445156,-115.172723 -36.06445146,-115.1727324 -36.06445137,-115.1727413 -36.06445127,-115.1727507 -36.06445117,-115.1727602 -36.06445108,-115.172769 -36.06445098,-115.1727785 -36.06445089,-115.1727879 -36.0644508,-115.1727968 -36.0644507,-115.1728062 -36.0644506,-115.1728157 -36.06445051,-115.1728245 -36.06445041,-115.172834 -36.06445032,-115.1728434 -36.06445022,-115.1728523 -36.06445013,-115.1728617 -36.06445003,-115.1728711 -36.06444997,-115.17288 -36.06444991,-115.1728895 -36.06444986,-115.1728989 -36.06444981,-115.1729078 -36.06444976,-115.1729172 -36.06444971,-115.1729266 -36.06444966,-115.1729355 -36.0644496,-115.172945 -36.06444955,-115.1729544 -36.0644495,-115.1729633 -36.06444945,-115.1729727 -36.0644494,-115.1729821 -36.06444935,-115.172991 -36.06444929,-115.1730005 -36.06444924,-115.1730099 -36.06444919,-115.1730188 -36.06444914,-115.1730282 -36.06444909,-115.1730376 -36.06444904,-115.1730465 -36.06444884,-115.1730559 -36.06444833,-115.1730654 -36.06444784,-115.1730742 -36.06444733,-115.1730836 -36.06444682,-115.173093 -36.06444633,-115.1731019 -36.06444582,-115.1731113 -36.0644453,-115.1731207 -36.06444482,-115.1731296 -36.06444431,-115.173139 -36.06444379,-115.1731484 -36.06444331,-115.1731573 -36.0644428,-115.1731667 -36.06444228,-115.1731761 -36.0644418,-115.173185 -36.06444129,-115.1731944 -36.06444077,-115.1732038 -36.06444029,-115.1732127 -36.06443978,-115.1732221 -36.06443926,-115.1732315 -36.06443878,-115.1732403 -36.06443827,-115.1732498 -36.06443775,-115.1732592 -36.06443727,-115.173268 -36.06443676,-115.1732774 -36.06443624,-115.1732869 -36.06443576,-115.1732957 -36.06443525,-115.1733051 -36.06443473,-115.1733145 -36.06443425,-115.1733234 -36.06443374,-115.1733328 -36.06443322,-115.1733422 -36.06443274,-115.1733511 -36.06443222,-115.1733605 -36.06443171,-115.1733699 -36.06443123,-115.1733788 -36.06443071,-115.1733882 -36.0644302,-115.1733976 -36.06442972,-115.1734065 -36.0644292,-115.1734159 -36.06442869,-115.1734253 -36.06442821,-115.1734341 -36.06442769,-115.1734436 -36.06442718,-115.173453 -36.0644267,-115.1734618 -36.06442618,-115.1734712 -36.06442567,-115.1734807 -36.06442519,-115.1734895 -36.06442467,-115.1734989 -36.06442416,-115.1735083 -36.06442368,-115.1735172 -36.06442316,-115.1735266 -36.06442265,-115.173536 -36.06442217,-115.1735449 -36.06442165,-115.1735543 -36.06442114,-115.1735637 -36.06442066,-115.1735726 -36.06442014,-115.173582 -36.06441963,-115.1735914 -36.06441914,-115.1736003 -36.06441863,-115.1736097 -36.06441812,-115.1736191 -36.06441763,-115.173628 -36.06441712,-115.1736374 -36.06441661,-115.1736468 -36.06441612,-115.1736556 -36.06441561,-115.173665 -36.0644151,-115.1736745 -36.06441461,-115.1736833 -36.0644141,-115.1736927 -36.06441359,-115.1737021 -36.0644131,-115.173711 -36.06441259,-115.1737204 -36.06441208,-115.1737298 -36.06441159,-115.1737387 -36.06441108,-115.1737481 -36.06441057,-115.1737575 -36.06441008,-115.1737664 -36.06440957,-115.1737758 -36.06440906,-115.1737852 -36.06440857,-115.1737941 -36.06440806,-115.1738035 -36.06440754,-115.1738129 -36.06440706,-115.1738218 -36.06440655,-115.1738312 -36.06440603,-115.1738406 -36.06440555,-115.1738494 -36.06440504,-115.1738589 -36.06440452,-115.1738683 -36.06440404,-115.1738771 -36.06440353,-115.1738865 -36.06440301,-115.173896 -36.06440253,-115.1739048 -36.06440202,-115.1739142 -36.0644015,-115.1739236 -36.06440102,-115.1739325 -36.06440051,-115.1739419 -36.06439999,-115.1739513 -36.06439951,-115.1739602 -36.064399,-115.1739696 -36.06439848,-115.173979 -36.064398,-115.1739879 -36.06439749,-115.1739973 -36.06439697,-115.1740067 -36.06439649,-115.1740156 -36.06439598,-115.174025 -36.06439546,-115.1740344 -36.06439498,-115.1740432 -36.06439446,-115.1740527 -36.06439395,-115.1740621 -36.06439347,-115.1740709 -36.06439295,-115.1740803 -36.06439244,-115.1740898 -36.06439196,-115.1740986 -36.06439144,-115.174108 -36.06439093,-115.1741174 -36.06439045,-115.1741263 -36.06438993,-115.1741357 -36.06438942,-115.1741451 -36.06438894,-115.174154 -36.06438842,-115.1741634 -36.06438791,-115.1741728 -36.06438743,-115.1741817 -36.06438691,-115.1741911 -36.0643864,-115.1742005 -36.06438592,-115.1742094 -36.0643854,-115.1742188 -36.06438489,-115.1742282 -36.06438441,-115.1742371 -36.06438389,-115.1742465 -36.06438338,-115.1742559 -36.0643829,-115.1742647 -36.06438238,-115.1742742 -36.06438187,-115.1742836 -36.06438138,-115.1742924 -36.06438087,-115.1743018 -36.06438036,-115.1743113 -36.06437987,-115.1743201 -36.06437936,-115.1743295 -36.06437885,-115.1743389 -36.06437836,-115.1743478 -36.06437785,-115.1743572 -36.06437734,-115.1743666 -36.06437685,-115.1743755 -36.06437634,-115.1743849 -36.06437583,-115.1743943 -36.06437534,-115.1744032 -36.06437483,-115.1744126 -36.06437432,-115.174422 -36.06437383,-115.1744309 -36.06437332,-115.1744403 -36.06437281,-115.1744497 -36.06437232,-115.1744585 -36.06437181,-115.174468 -36.0643713,-115.1744774 -36.06437081,-115.1744862 -36.0643703,-115.1744956 -36.06436979,-115.1745051 -36.0643693,-115.1745139 -36.06436879,-115.1745233 -36.06436827,-115.1745327 -36.06436779,-115.1745416 -36.06436728,-115.174551 -36.06436676,-115.1745604 -36.06436628,-115.1745693 -36.06436577,-115.1745787 -36.06436525,-115.1745881 -36.06436477,-115.174597 -36.06436426,-115.1746064 -36.06436374,-115.1746158 -36.06436326,-115.1746247 -36.06436275,-115.1746341 -36.06436223,-115.1746435 -36.06436175,-115.1746523 -36.06436124,-115.1746618 -36.06436072,-115.1746712 -36.06436024,-115.17468 -36.06435973,-115.1746894 -36.06435921,-115.1746989 -36.06435873,-115.1747077 -36.06435822,-115.1747171 -36.0643577,-115.1747265 -36.06435722,-115.1747354 -36.06435671,-115.1747448 -36.06435619,-115.1747542 -36.06435571,-115.1747631 -36.06435519,-115.1747725 -36.06435468,-115.1747819 -36.0643542,-115.1747908 -36.06435368,-115.1748002 -36.06435317,-115.1748096 -36.06435269,-115.1748185 -36.06435217,-115.1748279 -36.06435166,-115.1748373 -36.06435118,-115.1748462 -36.06435066,-115.1748556 -36.06435015,-115.174865 -36.06434967,-115.1748738 -36.06434915,-115.1748833 -36.06434864,-115.1748927 -36.06434816,-115.1749015 -36.06434764,-115.1749109 -36.06434713,-115.1749204 -36.06434665,-115.1749292 -36.06434613,-115.1749386 -36.06434562,-115.174948 -36.06434514,-115.1749569 -36.06434462,-115.1749663 -36.06434411,-115.1749757 -36.06434363,-115.1749846 -36.06434311,-115.174994 -36.0643426,-115.1750034 -36.06434211,-115.1750123 -36.0643416,-115.1750217 -36.06434109,-115.1750311 -36.0643406,-115.17504 -36.06434009,-115.1750494 -36.06433958,-115.1750588 -36.06433909,-115.1750676 -36.06433858,-115.1750771 -36.06433807,-115.1750865 -36.06433758,-115.1750953 -36.06433707,-115.1751047 -36.06433656,-115.1751142 -36.06433607,-115.175123 -36.06433556,-115.1751324 -36.06433505,-115.1751418 -36.06433456,-115.1751507 -36.06433405,-115.1751601 -36.06433354,-115.1751695 -36.06433305,-115.1751784 -36.06433254,-115.1751878 -36.06433203,-115.1751972 -36.06433154,-115.1752061 -36.06433103,-115.1752155 -36.06433051,-115.1752249 -36.06433003,-115.1752338 -36.06432952,-115.1752432 -36.064329,-115.1752526 -36.06432852,-115.1752614 -36.06432801,-115.1752709 -36.06432721,-115.1752802 -36.06432645,-115.1752891 -36.06432564,-115.1752985 -36.06432484,-115.1753078 -36.06432408,-115.1753167 -36.06432327,-115.175326 -36.06432247,-115.1753354 -36.06432171,-115.1753443 -36.0643209,-115.1753536 -36.0643201,-115.175363 -36.06431934,-115.1753719 -36.06431853,-115.1753812 -36.06431773,-115.1753906 -36.06431697,-115.1753995 -36.06431616,-115.1754088 -36.06431536,-115.1754182 -36.0643146,-115.175427 -36.06431379,-115.1754364 -36.06431298,-115.1754458 -36.06431223,-115.1754546 -36.06431142,-115.175464 -36.06431061,-115.1754734 -36.06430986,-115.1754822 -36.06430905,-115.1754916 -36.06430824,-115.175501 -36.06430749,-115.1755098 -36.06430668,-115.1755192 -36.06430587,-115.1755286 -36.06430512,-115.1755374 -36.06430431,-115.1755468 -36.0643035,-115.1755562 -36.06430275,-115.175565 -36.06430194,-115.1755744 -36.06430113,-115.1755838 -36.06430038,-115.1755926 -36.06429957,-115.175602 -36.06429876,-115.1756114 -36.06429801,-115.1756202 -36.0642972,-115.1756296 -36.06429639,-115.175639 -36.06429564,-115.1756478 -36.06429483,-115.1756572 -36.06429402,-115.1756666 -36.06429326,-115.1756754 -36.06429246,-115.1756848 -36.06429165,-115.1756942 -36.06429089,-115.175703 -36.06429009,-115.1757124 -36.06428928,-115.1757218 -36.06428852,-115.1757306 -36.06428772,-115.17574 -36.06428691,-115.1757493 -36.06428615,-115.1757582 -36.06428535,-115.1757676 -36.06428454,-115.1757769 -36.06428378,-115.1757858 -36.06428298,-115.1757952 -36.06428217,-115.1758045 -36.06428141,-115.1758134 -36.06428061,-115.1758228 -36.0642798,-115.1758321 -36.06427904,-115.175841 -36.06427824,-115.1758503 -36.06427743,-115.1758597 -36.06427667,-115.1758686 -36.06427587,-115.1758779 -36.06427506,-115.1758873 -36.0642743,-115.1758962 -36.0642735,-115.1759055 -36.06427269,-115.1759149 -36.06427193,-115.1759237 -36.06427113,-115.1759331 -36.06427032,-115.1759425 -36.06426956,-115.1759513 -36.06426876,-115.1759607 -36.06426795,-115.1759701 -36.06426719,-115.1759789 -36.06426639,-115.1759883 -36.06426558,-115.1759977 -36.06426482,-115.1760065 -36.06426402,-115.1760159 -36.06426321,-115.1760253 -36.06426245,-115.1760341 -36.06426165,-115.1760435 -36.06426084,-115.1760529 -36.06426008,-115.1760617 -36.06425928,-115.1760711 -36.06425847,-115.1760805 -36.06425771,-115.1760893 -36.06425691,-115.1760987 -36.0642561,-115.1761081 -36.06425534,-115.1761169 -36.06425454,-115.1761263 -36.06425373,-115.1761357 -36.06425297,-115.1761445 -36.06425217,-115.1761539 -36.06425136,-115.1761633 -36.0642506,-115.1761721 -36.0642498,-115.1761815 -36.06424899,-115.1761909 -36.06424823,-115.1761997 -36.06424743,-115.1762091 -36.06424662,-115.1762185 -36.06424586,-115.1762273 -36.06424506,-115.1762367 -36.06424425,-115.176246 -36.06424349,-115.1762549 -36.06424268,-115.1762643 -36.06424188,-115.1762736 -36.06424112,-115.1762825 -36.06424031,-115.1762919 -36.06423951,-115.1763012 -36.06423875,-115.1763101 -36.06423794,-115.1763195 -36.06423714,-115.1763288 -36.06423638,-115.1763377 -36.06423557,-115.176347 -36.06423477,-115.1763564 -36.06423401,-115.1763653 -36.0642332,-115.1763746 -36.0642324,-115.176384 -36.06423164,-115.1763929 -36.06423083,-115.1764022 -36.06423003,-115.1764116 -36.06422927,-115.1764204 -36.06422846,-115.1764298 -36.06422766,-115.1764392 -36.0642269,-115.176448 -36.06422609,-115.1764574 -36.06422529,-115.1764668 -36.06422453,-115.1764756 -36.06422372,-115.176485 -36.06422292,-115.1764944 -36.06422216,-115.1765032 -36.06422135,-115.1765126 -36.06422055,-115.176522 -36.06421979,-115.1765308 -36.06421898,-115.1765402 -36.06421818,-115.1765496 -36.06421742,-115.1765584 -36.06421661,-115.1765678 -36.06421581,-115.1765772 -36.06421505,-115.176586 -36.06421424,-115.1765954 -36.06421344,-115.1766048 -36.06421268,-115.1766136 -36.06421187,-115.176623 -36.06421107,-115.1766324 -36.06421031,-115.1766412 -36.0642095,-115.1766506 -36.0642087,-115.17666 -36.06420794,-115.1766688 -36.06420713,-115.1766782 -36.06420633,-115.1766876 -36.06420557,-115.1766964 -36.06420498,-115.1767058 -36.06420491,-115.1767152 -36.06420484,-115.1767241 -36.06420477,-115.1767335 -36.06420469,-115.176743 -36.06420463,-115.1767518 -36.06420455,-115.1767613 -36.06420448,-115.1767707 -36.06420441,-115.1767796 -36.06420434,-115.176789 -36.06420427,-115.1767985 -36.0642042,-115.1768073 -36.06420413,-115.1768168 -36.06420406,-115.1768262 -36.06420399,-115.1768351 -36.06420392,-115.1768445 -36.06420384,-115.176854 -36.06420378,-115.1768628 -36.0642037,-115.1768723 -36.06420363,-115.1768817 -36.06420356,-115.1768906 -36.06420349,-115.1769 -36.06420342,-115.1769095 -36.06420335,-115.1769183 -36.06420328,-115.1769278 -36.06420321,-115.1769372 -36.06420314,-115.1769461 -36.06420307,-115.1769555 -36.064203,-115.176965 -36.06420293,-115.1769738 -36.06420286,-115.1769833 -36.06420278,-115.1769927 -36.06420271,-115.1770016 -36.06420264,-115.177011 -36.06420257,-115.1770204 -36.0642025,-115.1770293 -36.06420243,-115.1770388 -36.06420236,-115.1770482 -36.06420229,-115.1770571 -36.06420222,-115.1770665 -36.06420215,-115.1770759 -36.06420208,-115.1770848 -36.06420201,-115.1770943 -36.06420284,-115.1771036 -36.0642037,-115.1771124 -36.06420461,-115.1771218 -36.06420552,-115.1771312 -36.06420638,-115.17714 -36.06420729,-115.1771494 -36.0642082,-115.1771587 -36.06420905,-115.1771676 -36.06420996,-115.1771769 -36.06421088,-115.1771863 -36.06421173,-115.1771951 -36.06421264,-115.1772045 -36.06421355,-115.1772138 -36.06421441,-115.1772227 -36.06421532,-115.177232 -36.06421623,-115.1772414 -36.06421709,-115.1772502 -36.064218,-115.1772596 -36.06421891,-115.177269 -36.06421977,-115.1772778 -36.06422068,-115.1772871 -36.06422159,-115.1772965 -36.06422245,-115.1773053 -36.06422336,-115.1773147 -36.06422427,-115.1773241 -36.06422513,-115.1773329 -36.06422604,-115.1773422 -36.06422695,-115.1773516 -36.06422781,-115.1773604 -36.06422872,-115.1773698 -36.06422963,-115.1773792 -36.06423048,-115.177388 -36.0642314,-115.1773974 -36.06423231,-115.1774067 -36.06423316,-115.1774155 -36.06423407,-115.1774249 -36.06423498,-115.1774343 -36.06423584,-115.1774431 -36.06423675,-115.1774525 -36.06423853,-115.1774616 -36.06424051,-115.1774701 -36.06424262,-115.1774792 -36.06424472,-115.1774883 -36.0642467,-115.1774968 -36.0642488,-115.1775059 -36.06425091,-115.177515 -36.06425289,-115.1775235 -36.06425499,-115.1775326 -36.0642571,-115.1775417 -36.06425908,-115.1775502 -36.06426118,-115.1775593 -36.06426328,-115.1775683 -36.06426526,-115.1775769 -36.06426737,-115.177586 -36.06426947,-115.177595 -36.06427145,-115.1776036 -36.06427356,-115.1776126 -36.06427566,-115.1776217 -36.06427764,-115.1776303 -36.06427974,-115.1776393 -36.06428185,-115.1776484 -36.06428383,-115.1776569 -36.06428593,-115.177666 -36.06428803,-115.1776751 -36.06429001,-115.1776836 -36.06429212,-115.1776927 -36.06429422,-115.1777018 -36.0642962,-115.1777103 -36.06429831,-115.1777194 -36.06430041,-115.1777285 -36.06430239,-115.177737 -36.06430449,-115.1777461 -36.0643066,-115.1777551 -36.06430858,-115.1777637 -36.06431068,-115.1777728 -36.06431279,-115.1777818 -36.06431477,-115.1777904 -36.06431687,-115.1777994 -36.06431897,-115.1778085 -36.06432095,-115.177817 -36.06432306,-115.1778261 -36.06432516,-115.1778352 -36.06432714,-115.1778437 -36.06432924,-115.1778528 -36.06433135,-115.1778619 -36.06433333,-115.1778704 -36.06433543,-115.1778795 -36.06433754,-115.1778886 -36.06433952,-115.1778971 -36.06434162,-115.1779062 -36.06434372,-115.1779152 -36.0643457,-115.1779238 -36.06434781,-115.1779329 -36.06435066,-115.1779415 -36.06435427,-115.1779492 -36.0643581,-115.1779574 -36.06436193,-115.1779656 -36.06436554,-115.1779733 -36.06436937,-115.1779814 -36.0643732,-115.1779896 -36.0643768,-115.1779973 -36.06438064,-115.1780055 -36.06438447,-115.1780136 -36.06438807,-115.1780213 -36.06439191,-115.1780295 -36.06439574,-115.1780377 -36.06439934,-115.1780454 -36.06440317,-115.1780535 -36.06440701,-115.1780617 -36.06441061,-115.1780694 -36.06441444,-115.1780776 -36.06441828,-115.1780857 -36.06442188,-115.1780934 -36.06442571,-115.1781016 -36.06442954,-115.1781098 -36.06443315,-115.1781175 -36.06443698,-115.1781256 -36.06444081,-115.1781338 -36.06444442,-115.1781415 -36.06444825,-115.1781497 -36.06445208,-115.1781578 -36.06445569,-115.1781655 -36.06445952,-115.1781737 -36.06446335,-115.1781819 -36.06446696,-115.1781896 -36.06447079,-115.1781977 -36.06447462,-115.1782059 -36.06447823,-115.1782136 -36.06448206,-115.1782218 -36.06448589,-115.1782299 -36.0644895,-115.1782376 -36.06449333,-115.1782458 -36.06449716,-115.178254 -36.06450077,-115.1782617 -36.0645046,-115.1782698 -36.06450843,-115.178278 -36.06451204,-115.1782857 -36.06451587,-115.1782939 -36.0645197,-115.178302 -36.0645233,-115.1783097 -36.06452714,-115.1783179 -36.06453097,-115.1783261 -36.06453457,-115.1783338 -36.0645384,-115.1783419 -36.06454224,-115.1783501 -36.06454584,-115.1783578 -36.06454967,-115.178366 -36.06455351,-115.1783741 -36.06455711,-115.1783818 -36.06456116,-115.1783898 -36.06456588,-115.1783973 -36.06457032,-115.1784043 -36.06457504,-115.1784117 -36.06457975,-115.1784191 -36.0645842,-115.1784261 -36.06458891,-115.1784336 -36.06459363,-115.178441 -36.06459807,-115.178448 -36.06460279,-115.1784554 -36.06460751,-115.1784629 -36.06461195,-115.1784699 -36.06461666,-115.1784773 -36.06462138,-115.1784847 -36.06462582,-115.1784917 -36.06463054,-115.1784992 -36.06463526,-115.1785066 -36.0646397,-115.1785136 -36.06464442,-115.178521 -36.06464913,-115.1785285 -36.06465357,-115.1785355 -36.06465829,-115.1785429 -36.06466301,-115.1785504 -36.06466745,-115.1785573 -36.06467217,-115.1785648 -36.06467688,-115.1785722 -36.06468132,-115.1785792 -36.06468604,-115.1785867 -36.06469076,-115.1785941 -36.0646952,-115.1786011 -36.06469992,-115.1786085 -36.06470464,-115.178616 -36.06470908,-115.178623 -36.06471379,-115.1786304 -36.06471851,-115.1786378 -36.06472295,-115.1786448 -36.06472767,-115.1786523 -36.06473239,-115.1786597 -36.06473683,-115.1786667 -36.06474155,-115.1786741 -36.064744,-115.1786825 -36.064744,-115.1786914 -36.064744,-115.1787008 -36.064744,-115.1787103 -36.064744,-115.1787192 -36.064744,-115.1787286 -36.064744,-115.178738 -36.06474728,-115.1787453 -36.06475253,-115.1787522 -36.06475777,-115.1787591 -36.06476271,-115.1787655 -36.06476795,-115.1787724 -36.0647732,-115.1787793 -36.06477813,-115.1787858 -36.06478338,-115.1787927 -36.06478862,-115.1787995 -36.06479356,-115.178806 -36.0647988,-115.1788129 -36.06480404,-115.1788198 -36.06480898,-115.1788262 -36.06481422,-115.1788331 -36.06481947,-115.17884 -36.0648244,-115.1788465 -36.06482965,-115.1788534 -36.06483489,-115.1788602 -36.06483983,-115.1788667 -36.06484507,-115.1788736 -36.06485032,-115.1788805 -36.06485525,-115.178887 -36.0648605,-115.1788938 -36.06486574,-115.1789007 -36.06487068,-115.1789072 -36.06487592,-115.1789141 -36.06488117,-115.1789209 -36.0648861,-115.1789274 -36.06489135,-115.1789343 -36.06489659,-115.1789412 -36.06490153,-115.1789477 -36.06490677,-115.1789545 -36.06491202,-115.1789614 -36.06491695,-115.1789679 -36.0649222,-115.1789748 -36.06492744,-115.1789817 -36.06493238,-115.1789881 -36.06493762,-115.178995 -36.06494287,-115.1790019 -36.0649478,-115.1790084 -36.06495305,-115.1790152 -36.06495829,-115.1790221 -36.06496323,-115.1790286 -36.06496847,-115.1790355 -36.06497371,-115.1790424 -36.06497865,-115.1790488 -36.06498389,-115.1790557 -36.06498914,-115.1790626 -36.06499407,-115.1790691 -36.06499932,-115.179076 -36.06500456,-115.1790828 -36.0650095,-115.1790893 -36.06501474,-115.1790962 -36.06501999,-115.1791031 -36.06502492,-115.1791095 -36.06503017,-115.1791164 -36.06503541,-115.1791233 -36.06504035,-115.1791298 -36.06504559,-115.1791367 -36.06505084,-115.1791435 -36.06505577,-115.17915 -36.06506102,-115.1791569 -36.06506626,-115.1791638 -36.0650712,-115.1791702 -36.06507644,-115.1791771 -36.06508169,-115.179184 -36.06508662,-115.1791905 -36.06509187,-115.1791974 -36.06509711,-115.1792042 -36.06510205,-115.1792107 -36.06510729,-115.1792176 -36.06511254,-115.1792245 -36.06511747,-115.179231 -36.06512272,-115.1792378 -36.06512796,-115.1792447 -36.0651329,-115.1792512 -36.06513814,-115.1792581 -36.06514338,-115.1792649 -36.06514832,-115.1792714 -36.06515356,-115.1792783 -36.06515881,-115.1792852 -36.06516375,-115.1792917 -36.06516899,-115.1792985 -36.06517423,-115.1793054 -36.06517917,-115.1793119 -36.06518441,-115.1793188 -36.06518966,-115.1793257 -36.06519459,-115.1793321 -36.06519984,-115.179339 -36.06520508,-115.1793459 -36.06521002,-115.1793524 -36.06521526,-115.1793592 -36.06522051,-115.1793661 -36.06522544,-115.1793726 -36.06523069,-115.1793795 -36.06523593,-115.1793864 -36.06524087,-115.1793928 -36.06524611,-115.1793997 -36.06525136,-115.1794066 -36.06525629,-115.1794131 -36.06526204,-115.1794193 -36.06526786,-115.1794254 -36.06527334,-115.1794312 -36.06527917,-115.1794373 -36.06528499,-115.1794435 -36.06529047,-115.1794493 -36.06529629,-115.1794554 -36.06530212,-115.1794615 -36.0653076,-115.1794673 -36.06531342,-115.1794734 -36.06531925,-115.1794796 -36.06532473,-115.1794853 -36.06533055,-115.1794915 -36.06533637,-115.1794976 -36.06534185,-115.1795034 -36.06534768,-115.1795095 -36.0653535,-115.1795156 -36.06535898,-115.1795214 -36.06536481,-115.1795275 -36.06537063,-115.1795337 -36.06537611,-115.1795394 -36.06538193,-115.1795456 -36.06538776,-115.1795517 -36.06539324,-115.1795575 -36.06539906,-115.1795636 -36.06540488,-115.1795698 -36.06541037,-115.1795755 -36.06541619,-115.1795817 -36.06542201,-115.1795878 -36.06542749,-115.1795936 -36.06543332,-115.1795997 -36.06543914,-115.1796058 -36.06544462,-115.1796116 -36.06545044,-115.1796177 -36.06545627,-115.1796239 -36.06546175,-115.1796296 -36.06546757,-115.1796358 -36.0654734,-115.1796419 -36.06547888,-115.1796477 -36.0654847,-115.1796538 -36.06549052,-115.1796599 -36.06549601,-115.1796657 -36.06550183,-115.1796719 -36.06550765,-115.179678 -36.06551313,-115.1796838 -36.06551896,-115.1796899 -36.06552478,-115.179696 -36.06553026,-115.1797018 -36.06553608,-115.1797079 -36.06554191,-115.1797141 -36.06554739,-115.1797198 -36.06555321,-115.179726 -36.06555904,-115.1797321 -36.06556452,-115.1797379 -36.06557034,-115.179744 -36.06557616,-115.1797501 -36.06558165,-115.1797559 -36.06558747,-115.179762 -36.06559329,-115.1797682 -36.06559877,-115.179774 -36.0656046,-115.1797801 -36.06561042,-115.1797862 -36.0656159,-115.179792 -36.06562172,-115.1797981 -36.06562755,-115.1798043 -36.06563303,-115.17981 -36.06563971,-115.1798146 -36.0656464,-115.1798193 -36.06565269,-115.1798236 -36.06565937,-115.1798282 -36.06566605,-115.1798329 -36.06567234,-115.1798372 -36.06567902,-115.1798418 -36.0656857,-115.1798464 -36.06569199,-115.1798508 -36.06569867,-115.1798554 -36.06570535,-115.17986 -36.06571164,-115.1798644 -36.06571832,-115.179869 -36.065725,-115.1798736 -36.06573129,-115.179878 -36.06573797,-115.1798826 -36.06574466,-115.1798872 -36.06575094,-115.1798916 -36.06575763,-115.1798962 -36.06576431,-115.1799008 -36.0657706,-115.1799051 -36.06577728,-115.1799098 -36.06578396,-115.1799144 -36.06579025,-115.1799187 -36.06579693,-115.1799233 -36.06580361,-115.179928 -36.0658099,-115.1799323 -36.06581658,-115.1799369 -36.06582326,-115.1799416 -36.06582955,-115.1799459 -36.06583623,-115.1799505 -36.06584292,-115.1799551 -36.0658492,-115.1799595 -36.06585589,-115.1799641 -36.06586257,-115.1799687 -36.06586886,-115.1799731 -36.06587554,-115.1799777 -36.06588222,-115.1799823 -36.06588851,-115.1799867 -36.06589519,-115.1799913 -36.06590187,-115.1799959 -36.065902,-115.179996 -0.0,0.0 diff --git a/package/config.xml b/package/config.xml index f61bc56..4c53bcb 100644 --- a/package/config.xml +++ b/package/config.xml @@ -13,5 +13,6 @@ + diff --git a/package/package.pro b/package/package.pro index af22062..ae6921b 100644 --- a/package/package.pro +++ b/package/package.pro @@ -1,5 +1,5 @@ -DISTFILES = icon.svg config.xml Coordinate.txt +DISTFILES = icon.svg config.xml copy_icon.target = $$OUT_PWD/root/icon.svg copy_icon.depends = $$_PRO_FILE_PWD_/icon.svg @@ -13,12 +13,6 @@ copy_config.commands = $(COPY_FILE) \"$$replace(copy_config.depends, /, $$QMAKE_ QMAKE_EXTRA_TARGETS += copy_config PRE_TARGETDEPS += $$copy_config.target -copy_coordinate.target = $$OUT_PWD/root/Coordinate.txt -copy_coordinate.depends = $$_PRO_FILE_PWD_/Coordinate.txt -copy_coordinate.commands = $(COPY_FILE) \"$$replace(copy_coordinate.depends, /, $$QMAKE_DIR_SEP)\" \"$$replace(copy_coordinate.target, /, $$QMAKE_DIR_SEP)\" -QMAKE_EXTRA_TARGETS += copy_coordinate -PRE_TARGETDEPS += $$copy_coordinate.target - wgt.target = package wgt.commands = wgtpkg-pack -f -o tbtnavi.wgt root -- cgit 1.2.3-korg